@pulumi/linode 6.3.0 → 6.4.0-alpha.1786429376
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/image.d.ts +1 -1
- package/image.js +1 -1
- package/instanceConfig.d.ts +1 -1
- package/instanceConfig.js +1 -1
- package/instanceDisk.d.ts +1 -1
- package/instanceDisk.js +1 -1
- package/interface.d.ts +1 -1
- package/interface.js +1 -1
- package/package.json +2 -2
package/image.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ import * as outputs from "./types/output";
|
|
|
21
21
|
* const bar = new linode.Image("bar", {
|
|
22
22
|
* label: "foo-sda-image",
|
|
23
23
|
* description: "Image taken from foo",
|
|
24
|
-
* diskId: foo.disks
|
|
24
|
+
* diskId: foo.disks[0].id,
|
|
25
25
|
* linodeId: foo.id.apply(x =>Number(x)),
|
|
26
26
|
* tags: [
|
|
27
27
|
* "image-tag",
|
package/image.js
CHANGED
|
@@ -48,7 +48,7 @@ const utilities = __importStar(require("./utilities"));
|
|
|
48
48
|
* const bar = new linode.Image("bar", {
|
|
49
49
|
* label: "foo-sda-image",
|
|
50
50
|
* description: "Image taken from foo",
|
|
51
|
-
* diskId: foo.disks
|
|
51
|
+
* diskId: foo.disks[0].id,
|
|
52
52
|
* linodeId: foo.id.apply(x =>Number(x)),
|
|
53
53
|
* tags: [
|
|
54
54
|
* "image-tag",
|
package/instanceConfig.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ import * as outputs from "./types/output";
|
|
|
25
25
|
* const boot = new linode.InstanceDisk("boot", {
|
|
26
26
|
* label: "boot",
|
|
27
27
|
* linodeId: my_instance.id.apply(x =>Number(x)),
|
|
28
|
-
* size: my_instance.specs
|
|
28
|
+
* size: my_instance.specs[0].disk,
|
|
29
29
|
* image: "linode/ubuntu22.04",
|
|
30
30
|
* rootPass: "myc00lpass!",
|
|
31
31
|
* });
|
package/instanceConfig.js
CHANGED
|
@@ -52,7 +52,7 @@ const utilities = __importStar(require("./utilities"));
|
|
|
52
52
|
* const boot = new linode.InstanceDisk("boot", {
|
|
53
53
|
* label: "boot",
|
|
54
54
|
* linodeId: my_instance.id.apply(x =>Number(x)),
|
|
55
|
-
* size: my_instance.specs
|
|
55
|
+
* size: my_instance.specs[0].disk,
|
|
56
56
|
* image: "linode/ubuntu22.04",
|
|
57
57
|
* rootPass: "myc00lpass!",
|
|
58
58
|
* });
|
package/instanceDisk.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ import * as outputs from "./types/output";
|
|
|
37
37
|
* const boot = new linode.InstanceDisk("boot", {
|
|
38
38
|
* label: "boot",
|
|
39
39
|
* linodeId: my_instance.id.apply(x =>Number(x)),
|
|
40
|
-
* size: my_instance.specs
|
|
40
|
+
* size: my_instance.specs[0].disk,
|
|
41
41
|
* image: "linode/ubuntu22.04",
|
|
42
42
|
* rootPass: "myc00lpass!",
|
|
43
43
|
* authorizedKeys: ["ssh-rsa AAAA...Gw== user@example.local"],
|
package/instanceDisk.js
CHANGED
|
@@ -64,7 +64,7 @@ const utilities = __importStar(require("./utilities"));
|
|
|
64
64
|
* const boot = new linode.InstanceDisk("boot", {
|
|
65
65
|
* label: "boot",
|
|
66
66
|
* linodeId: my_instance.id.apply(x =>Number(x)),
|
|
67
|
-
* size: my_instance.specs
|
|
67
|
+
* size: my_instance.specs[0].disk,
|
|
68
68
|
* image: "linode/ubuntu22.04",
|
|
69
69
|
* rootPass: "myc00lpass!",
|
|
70
70
|
* authorizedKeys: ["ssh-rsa AAAA...Gw== user@example.local"],
|
package/interface.d.ts
CHANGED
|
@@ -142,7 +142,7 @@ import * as outputs from "./types/output";
|
|
|
142
142
|
* const boot = new linode.InstanceDisk("boot", {
|
|
143
143
|
* label: "boot",
|
|
144
144
|
* linodeId: my_instance.id.apply(x =>Number(x)),
|
|
145
|
-
* size: my_instance.specs
|
|
145
|
+
* size: my_instance.specs[0].disk,
|
|
146
146
|
* image: "linode/debian12",
|
|
147
147
|
* rootPass: "this-is-NOT-a-safe-password",
|
|
148
148
|
* });
|
package/interface.js
CHANGED
|
@@ -169,7 +169,7 @@ const utilities = __importStar(require("./utilities"));
|
|
|
169
169
|
* const boot = new linode.InstanceDisk("boot", {
|
|
170
170
|
* label: "boot",
|
|
171
171
|
* linodeId: my_instance.id.apply(x =>Number(x)),
|
|
172
|
-
* size: my_instance.specs
|
|
172
|
+
* size: my_instance.specs[0].disk,
|
|
173
173
|
* image: "linode/debian12",
|
|
174
174
|
* rootPass: "this-is-NOT-a-safe-password",
|
|
175
175
|
* });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/linode",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.4.0-alpha.1786429376",
|
|
4
4
|
"description": "A Pulumi package for creating and managing linode cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "linode",
|
|
26
|
-
"version": "6.
|
|
26
|
+
"version": "6.4.0-alpha.1786429376"
|
|
27
27
|
}
|
|
28
28
|
}
|