@pulumi/null 0.3.0-alpha.1783583289 → 0.3.0-alpha.1783684235
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/package.json +2 -2
- package/resource.d.ts +2 -2
- package/resource.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/null",
|
|
3
|
-
"version": "0.3.0-alpha.
|
|
3
|
+
"version": "0.3.0-alpha.1783684235",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Null cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"pulumi": {
|
|
23
23
|
"resource": true,
|
|
24
24
|
"name": "null",
|
|
25
|
-
"version": "0.3.0-alpha.
|
|
25
|
+
"version": "0.3.0-alpha.1783684235"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/resource.d.ts
CHANGED
|
@@ -14,8 +14,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
14
14
|
* import * as std from "@pulumi/std";
|
|
15
15
|
*
|
|
16
16
|
* const cluster: aws.index.Instance[] = [];
|
|
17
|
-
* for (
|
|
18
|
-
* cluster.push(new aws.index.Instance(`cluster-${range
|
|
17
|
+
* for (let range = 0; range < 3; range++) {
|
|
18
|
+
* cluster.push(new aws.index.Instance(`cluster-${range}`, {
|
|
19
19
|
* ami: "ami-0dcc1e21636832c5d",
|
|
20
20
|
* instanceType: "m5.large",
|
|
21
21
|
* }));
|
package/resource.js
CHANGED
|
@@ -43,8 +43,8 @@ const utilities = __importStar(require("./utilities"));
|
|
|
43
43
|
* import * as std from "@pulumi/std";
|
|
44
44
|
*
|
|
45
45
|
* const cluster: aws.index.Instance[] = [];
|
|
46
|
-
* for (
|
|
47
|
-
* cluster.push(new aws.index.Instance(`cluster-${range
|
|
46
|
+
* for (let range = 0; range < 3; range++) {
|
|
47
|
+
* cluster.push(new aws.index.Instance(`cluster-${range}`, {
|
|
48
48
|
* ami: "ami-0dcc1e21636832c5d",
|
|
49
49
|
* instanceType: "m5.large",
|
|
50
50
|
* }));
|