Skip to content

Commit 16207f4

Browse files
committed
feat: remove ssh key parameter
1 parent dfeb7dc commit 16207f4

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

package.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,6 @@
2121
"default": "",
2222
"description": "Image Path"
2323
},
24-
"macadam.factory.machine.ssh-identity-path": {
25-
"type": "string",
26-
"format": "file",
27-
"scope": "VmProviderConnectionFactory",
28-
"default": "",
29-
"description": "Ssh Identity Path"
30-
},
3124
"macadam.factory.machine.cpus": {
3225
"type": "number",
3326
"format": "cpu",

src/extension.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -458,14 +458,10 @@ async function createVM(
458458
telemetryRecords.imagePath = 'custom';
459459
}
460460

461-
// ssh identity path
462-
const sshIdentityPath = params['macadam.factory.machine.ssh-identity-path'];
463-
464461
const startTime = performance.now();
465462
try {
466463
await macadam.createVm({
467464
imagePath: imagePath,
468-
sshIdentityPath: sshIdentityPath,
469465
username: 'core',
470466
containerProvider: provider,
471467
runOptions: { logger, token },

0 commit comments

Comments
 (0)