@pulumi/digitalocean 4.76.0 → 4.76.1
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.
- package/certificate.d.ts +3 -3
- package/certificate.js +3 -3
- package/databaseLogsinkOpensearch.d.ts +1 -1
- package/databaseLogsinkOpensearch.js +1 -1
- package/databaseLogsinkRsyslog.d.ts +4 -4
- package/databaseLogsinkRsyslog.js +4 -4
- package/dropletAutoscale.d.ts +1 -1
- package/dropletAutoscale.js +1 -1
- package/getRecords.d.ts +6 -6
- package/getRecords.js +6 -6
- package/package.json +2 -2
- package/provider.d.ts.map +1 -1
- package/provider.js +3 -1
- package/provider.js.map +1 -1
- package/sshKey.d.ts +1 -1
- package/sshKey.js +1 -1
package/certificate.d.ts
CHANGED
|
@@ -22,13 +22,13 @@ import * as enums from "./types/enums";
|
|
|
22
22
|
* type: digitalocean.CertificateType.Custom,
|
|
23
23
|
* privateKey: std.file({
|
|
24
24
|
* input: "/Users/terraform/certs/privkey.pem",
|
|
25
|
-
* }).
|
|
25
|
+
* }).result,
|
|
26
26
|
* leafCertificate: std.file({
|
|
27
27
|
* input: "/Users/terraform/certs/cert.pem",
|
|
28
|
-
* }).
|
|
28
|
+
* }).result,
|
|
29
29
|
* certificateChain: std.file({
|
|
30
30
|
* input: "/Users/terraform/certs/fullchain.pem",
|
|
31
|
-
* }).
|
|
31
|
+
* }).result,
|
|
32
32
|
* });
|
|
33
33
|
* ```
|
|
34
34
|
*
|
package/certificate.js
CHANGED
|
@@ -50,13 +50,13 @@ const utilities = __importStar(require("./utilities"));
|
|
|
50
50
|
* type: digitalocean.CertificateType.Custom,
|
|
51
51
|
* privateKey: std.file({
|
|
52
52
|
* input: "/Users/terraform/certs/privkey.pem",
|
|
53
|
-
* }).
|
|
53
|
+
* }).result,
|
|
54
54
|
* leafCertificate: std.file({
|
|
55
55
|
* input: "/Users/terraform/certs/cert.pem",
|
|
56
|
-
* }).
|
|
56
|
+
* }).result,
|
|
57
57
|
* certificateChain: std.file({
|
|
58
58
|
* input: "/Users/terraform/certs/fullchain.pem",
|
|
59
|
-
* }).
|
|
59
|
+
* }).result,
|
|
60
60
|
* });
|
|
61
61
|
* ```
|
|
62
62
|
*
|
|
@@ -52,7 +52,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
52
52
|
* format: "rfc5424",
|
|
53
53
|
* caCert: std.file({
|
|
54
54
|
* input: "/path/to/ca.pem",
|
|
55
|
-
* }).
|
|
55
|
+
* }).result,
|
|
56
56
|
* });
|
|
57
57
|
* ```
|
|
58
58
|
*
|
|
@@ -72,13 +72,13 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
72
72
|
* format: "rfc5424",
|
|
73
73
|
* caCert: std.file({
|
|
74
74
|
* input: "/path/to/ca.pem",
|
|
75
|
-
* }).
|
|
75
|
+
* }).result,
|
|
76
76
|
* clientCert: std.file({
|
|
77
77
|
* input: "/path/to/client.crt",
|
|
78
|
-
* }).
|
|
78
|
+
* }).result,
|
|
79
79
|
* clientKey: std.file({
|
|
80
80
|
* input: "/path/to/client.key",
|
|
81
|
-
* }).
|
|
81
|
+
* }).result,
|
|
82
82
|
* });
|
|
83
83
|
* ```
|
|
84
84
|
*
|
|
@@ -81,7 +81,7 @@ const utilities = __importStar(require("./utilities"));
|
|
|
81
81
|
* format: "rfc5424",
|
|
82
82
|
* caCert: std.file({
|
|
83
83
|
* input: "/path/to/ca.pem",
|
|
84
|
-
* }).
|
|
84
|
+
* }).result,
|
|
85
85
|
* });
|
|
86
86
|
* ```
|
|
87
87
|
*
|
|
@@ -101,13 +101,13 @@ const utilities = __importStar(require("./utilities"));
|
|
|
101
101
|
* format: "rfc5424",
|
|
102
102
|
* caCert: std.file({
|
|
103
103
|
* input: "/path/to/ca.pem",
|
|
104
|
-
* }).
|
|
104
|
+
* }).result,
|
|
105
105
|
* clientCert: std.file({
|
|
106
106
|
* input: "/path/to/client.crt",
|
|
107
|
-
* }).
|
|
107
|
+
* }).result,
|
|
108
108
|
* clientKey: std.file({
|
|
109
109
|
* input: "/path/to/client.key",
|
|
110
|
-
* }).
|
|
110
|
+
* }).result,
|
|
111
111
|
* });
|
|
112
112
|
* ```
|
|
113
113
|
*
|
package/dropletAutoscale.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ import * as outputs from "./types/output";
|
|
|
16
16
|
* name: "terraform-example",
|
|
17
17
|
* publicKey: std.file({
|
|
18
18
|
* input: "/Users/terraform/.ssh/id_rsa.pub",
|
|
19
|
-
* }).
|
|
19
|
+
* }).result,
|
|
20
20
|
* });
|
|
21
21
|
* const my_tag = new digitalocean.Tag("my-tag", {name: "terraform-example"});
|
|
22
22
|
* const my_autoscale_pool = new digitalocean.DropletAutoscale("my-autoscale-pool", {
|
package/dropletAutoscale.js
CHANGED
|
@@ -43,7 +43,7 @@ const utilities = __importStar(require("./utilities"));
|
|
|
43
43
|
* name: "terraform-example",
|
|
44
44
|
* publicKey: std.file({
|
|
45
45
|
* input: "/Users/terraform/.ssh/id_rsa.pub",
|
|
46
|
-
* }).
|
|
46
|
+
* }).result,
|
|
47
47
|
* });
|
|
48
48
|
* const my_tag = new digitalocean.Tag("my-tag", {name: "terraform-example"});
|
|
49
49
|
* const my_autoscale_pool = new digitalocean.DropletAutoscale("my-autoscale-pool", {
|
package/getRecords.d.ts
CHANGED
|
@@ -21,10 +21,10 @@ import * as outputs from "./types/output";
|
|
|
21
21
|
* values: ["MX"],
|
|
22
22
|
* }],
|
|
23
23
|
* });
|
|
24
|
-
* export const mailServers =
|
|
24
|
+
* export const mailServers = std.join({
|
|
25
25
|
* separator: ",",
|
|
26
|
-
* input: example.records.map(__item => __item.value),
|
|
27
|
-
* })
|
|
26
|
+
* input: example.then(example => example.records.map(__item => __item.value)),
|
|
27
|
+
* }).result;
|
|
28
28
|
* ```
|
|
29
29
|
*/
|
|
30
30
|
export declare function getRecords(args: GetRecordsArgs, opts?: pulumi.InvokeOptions): Promise<GetRecordsResult>;
|
|
@@ -83,10 +83,10 @@ export interface GetRecordsResult {
|
|
|
83
83
|
* values: ["MX"],
|
|
84
84
|
* }],
|
|
85
85
|
* });
|
|
86
|
-
* export const mailServers =
|
|
86
|
+
* export const mailServers = std.join({
|
|
87
87
|
* separator: ",",
|
|
88
|
-
* input: example.records.map(__item => __item.value),
|
|
89
|
-
* })
|
|
88
|
+
* input: example.then(example => example.records.map(__item => __item.value)),
|
|
89
|
+
* }).result;
|
|
90
90
|
* ```
|
|
91
91
|
*/
|
|
92
92
|
export declare function getRecordsOutput(args: GetRecordsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRecordsResult>;
|
package/getRecords.js
CHANGED
|
@@ -48,10 +48,10 @@ const utilities = __importStar(require("./utilities"));
|
|
|
48
48
|
* values: ["MX"],
|
|
49
49
|
* }],
|
|
50
50
|
* });
|
|
51
|
-
* export const mailServers =
|
|
51
|
+
* export const mailServers = std.join({
|
|
52
52
|
* separator: ",",
|
|
53
|
-
* input: example.records.map(__item => __item.value),
|
|
54
|
-
* })
|
|
53
|
+
* input: example.then(example => example.records.map(__item => __item.value)),
|
|
54
|
+
* }).result;
|
|
55
55
|
* ```
|
|
56
56
|
*/
|
|
57
57
|
function getRecords(args, opts) {
|
|
@@ -83,10 +83,10 @@ exports.getRecords = getRecords;
|
|
|
83
83
|
* values: ["MX"],
|
|
84
84
|
* }],
|
|
85
85
|
* });
|
|
86
|
-
* export const mailServers =
|
|
86
|
+
* export const mailServers = std.join({
|
|
87
87
|
* separator: ",",
|
|
88
|
-
* input: example.records.map(__item => __item.value),
|
|
89
|
-
* })
|
|
88
|
+
* input: example.then(example => example.records.map(__item => __item.value)),
|
|
89
|
+
* }).result;
|
|
90
90
|
* ```
|
|
91
91
|
*/
|
|
92
92
|
function getRecordsOutput(args, opts) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/digitalocean",
|
|
3
|
-
"version": "4.76.
|
|
3
|
+
"version": "4.76.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing DigitalOcean cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"pulumi": {
|
|
23
23
|
"resource": true,
|
|
24
24
|
"name": "digitalocean",
|
|
25
|
-
"version": "4.76.
|
|
25
|
+
"version": "4.76.1"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/provider.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;GAKG;AACH,qBAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IAIjD;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,QAAQ;IAOnD;;OAEG;IACH,SAAwB,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACvE;;OAEG;IACH,SAAwB,cAAc,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC1E;;OAEG;IACH,SAAwB,cAAc,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC1E;;OAEG;IACH,SAAwB,eAAe,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC3E;;OAEG;IACH,SAAwB,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAEjE;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,YAAY,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,eAAe;
|
|
1
|
+
{"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;GAKG;AACH,qBAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IAIjD;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,QAAQ;IAOnD;;OAEG;IACH,SAAwB,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACvE;;OAEG;IACH,SAAwB,cAAc,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC1E;;OAEG;IACH,SAAwB,cAAc,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC1E;;OAEG;IACH,SAAwB,eAAe,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC3E;;OAEG;IACH,SAAwB,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAEjE;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,YAAY,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,eAAe;IAoB5E;;OAEG;IACH,eAAe,IAAI,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,qBAAqB,CAAC;CAKnE;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IACzB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC/C;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAChD;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACpD;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACpD;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACrD;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAClD;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAClD;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACnD;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC5C;AAED,yBAAiB,QAAQ,CAAC;IACtB;;OAEG;IACH,UAAiB,qBAAqB;QAClC,QAAQ,CAAC,MAAM,EAAE;YAAC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;SAAC,CAAC;KACzC;CAEJ"}
|
package/provider.js
CHANGED
|
@@ -66,9 +66,11 @@ class Provider extends pulumi.ProviderResource {
|
|
|
66
66
|
resourceInputs["spacesAccessId"] = args?.spacesAccessId;
|
|
67
67
|
resourceInputs["spacesEndpoint"] = (args?.spacesEndpoint) ?? utilities.getEnv("SPACES_ENDPOINT_URL");
|
|
68
68
|
resourceInputs["spacesSecretKey"] = args?.spacesSecretKey;
|
|
69
|
-
resourceInputs["token"] = args?.token;
|
|
69
|
+
resourceInputs["token"] = args?.token ? pulumi.secret(args.token) : undefined;
|
|
70
70
|
}
|
|
71
71
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
72
|
+
const secretOpts = { additionalSecretOutputs: ["token"] };
|
|
73
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
72
74
|
super(Provider.__pulumiType, name, resourceInputs, opts);
|
|
73
75
|
}
|
|
74
76
|
/**
|
package/provider.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;;;;GAKG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IACjD,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,cAAc,CAAC;IAErD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,mBAAmB,GAAG,QAAQ,CAAC,YAAY,CAAC;IAC/E,CAAC;IAuBD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAmB,EAAE,IAA6B;QACxE,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB;YACI,cAAc,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,EAAE,WAAW,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,sBAAsB,CAAC,IAAI,8BAA8B,CAAC,CAAC;YACpI,cAAc,CAAC,cAAc,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,YAAY,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YACzF,cAAc,CAAC,kBAAkB,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YACjG,cAAc,CAAC,kBAAkB,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YACjG,cAAc,CAAC,mBAAmB,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,iBAAiB,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YACnG,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,gBAAgB,CAAC,GAAG,CAAC,IAAI,EAAE,cAAc,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC;YACrG,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;;;;GAKG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IACjD,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,cAAc,CAAC;IAErD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,mBAAmB,GAAG,QAAQ,CAAC,YAAY,CAAC;IAC/E,CAAC;IAuBD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAmB,EAAE,IAA6B;QACxE,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB;YACI,cAAc,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,EAAE,WAAW,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,sBAAsB,CAAC,IAAI,8BAA8B,CAAC,CAAC;YACpI,cAAc,CAAC,cAAc,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,YAAY,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YACzF,cAAc,CAAC,kBAAkB,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YACjG,cAAc,CAAC,kBAAkB,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YACjG,cAAc,CAAC,mBAAmB,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,iBAAiB,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YACnG,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,gBAAgB,CAAC,GAAG,CAAC,IAAI,EAAE,cAAc,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC;YACrG,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;SACjF;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;QAC1D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,CAAC;IAED;;OAEG;IACH,eAAe;QACX,OAAO,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,+CAA+C,EAAE;YACxE,UAAU,EAAE,IAAI;SACnB,EAAE,IAAI,CAAC,CAAC;IACb,CAAC;;AAtEL,4BAuEC"}
|
package/sshKey.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
17
17
|
* name: "Terraform Example",
|
|
18
18
|
* publicKey: std.file({
|
|
19
19
|
* input: "/Users/terraform/.ssh/id_rsa.pub",
|
|
20
|
-
* }).
|
|
20
|
+
* }).result,
|
|
21
21
|
* });
|
|
22
22
|
* // Create a new Droplet using the SSH key
|
|
23
23
|
* const web = new digitalocean.Droplet("web", {
|
package/sshKey.js
CHANGED
|
@@ -46,7 +46,7 @@ const utilities = __importStar(require("./utilities"));
|
|
|
46
46
|
* name: "Terraform Example",
|
|
47
47
|
* publicKey: std.file({
|
|
48
48
|
* input: "/Users/terraform/.ssh/id_rsa.pub",
|
|
49
|
-
* }).
|
|
49
|
+
* }).result,
|
|
50
50
|
* });
|
|
51
51
|
* // Create a new Droplet using the SSH key
|
|
52
52
|
* const web = new digitalocean.Droplet("web", {
|