@highstate/common 0.5.3 → 0.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,6 +12,7 @@ const hostnameResult = new remote.Command("hostname", {
12
12
  port: args.sshPort,
13
13
  user: args.sshUser,
14
14
  password: secrets.sshPassword,
15
+ privateKey: secrets.sshPrivateKey,
15
16
  dialErrorLimit: 3
16
17
  }),
17
18
  create: "hostname",
@@ -21,7 +22,8 @@ const hostname = hostnameResult.stdout.apply((x) => x.trim());
21
22
  const sshCredentials = output({
22
23
  user: args.sshUser,
23
24
  port: args.sshPort,
24
- password: secrets.sshPassword
25
+ password: secrets.sshPassword,
26
+ privateKey: secrets.sshPrivateKey
25
27
  });
26
28
  var index = outputs({
27
29
  server: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@highstate/common",
3
- "version": "0.5.3",
3
+ "version": "0.5.5",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -22,7 +22,7 @@
22
22
  "build": "pkgroll --tsconfig=tsconfig.build.json"
23
23
  },
24
24
  "dependencies": {
25
- "@highstate/pulumi": "^0.5.3",
25
+ "@highstate/pulumi": "^0.5.5",
26
26
  "@noble/hashes": "^1.7.1",
27
27
  "@pulumi/command": "^1.0.2",
28
28
  "micro-key-producer": "^0.7.3"
@@ -33,5 +33,5 @@
33
33
  "devDependencies": {
34
34
  "pkgroll": "^2.5.1"
35
35
  },
36
- "gitHead": "e6ff8cbad1d33641d6871ca159e1589db6844203"
36
+ "gitHead": "daed8a1121d6dc0af8ed92261962356dad2325aa"
37
37
  }