@pulumi/awsx 2.15.0 → 2.16.0
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/ec2/getDefaultVpc.js +3 -1
- package/ec2/getDefaultVpc.js.map +1 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
package/ec2/getDefaultVpc.js
CHANGED
|
@@ -21,7 +21,9 @@ exports.getDefaultVpc = getDefaultVpc;
|
|
|
21
21
|
*/
|
|
22
22
|
/** @deprecated Waiting for https://github.com/pulumi/pulumi/issues/7583. Use the DefaultVpc resource until resolved. */
|
|
23
23
|
function getDefaultVpcOutput(opts) {
|
|
24
|
-
|
|
24
|
+
pulumi.log.warn("getDefaultVpc is deprecated: Waiting for https://github.com/pulumi/pulumi/issues/7583. Use the DefaultVpc resource until resolved.");
|
|
25
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
26
|
+
return pulumi.runtime.invokeOutput("awsx:ec2:getDefaultVpc", {}, opts);
|
|
25
27
|
}
|
|
26
28
|
exports.getDefaultVpcOutput = getDefaultVpcOutput;
|
|
27
29
|
//# sourceMappingURL=getDefaultVpc.js.map
|
package/ec2/getDefaultVpc.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDefaultVpc.js","sourceRoot":"","sources":["../../ec2/getDefaultVpc.ts"],"names":[],"mappings":";AAAA,+DAA+D;AAC/D,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,wHAAwH;AACxH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,oIAAoI,CAAC,CAAA;IACrJ,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"getDefaultVpc.js","sourceRoot":"","sources":["../../ec2/getDefaultVpc.ts"],"names":[],"mappings":";AAAA,+DAA+D;AAC/D,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,wHAAwH;AACxH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,oIAAoI,CAAC,CAAA;IACrJ,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,EAAE,EACtD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sCAMC;AAmBD;;GAEG;AACH,wHAAwH;AACxH,SAAgB,mBAAmB,CAAC,IAA2B;IAC3D,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,oIAAoI,CAAC,CAAA;IACrJ,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wBAAwB,EAAE,EAC5D,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kDAKC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/awsx",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.16.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"aws",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "tsc",
|
|
16
|
-
"install": "node scripts/install-pulumi-plugin.js resource awsx 2.
|
|
16
|
+
"install": "node scripts/install-pulumi-plugin.js resource awsx 2.16.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-sdk/client-ecs": "^3.405.0",
|
|
@@ -33,6 +33,6 @@
|
|
|
33
33
|
"pulumi": {
|
|
34
34
|
"resource": true,
|
|
35
35
|
"name": "awsx",
|
|
36
|
-
"version": "2.
|
|
36
|
+
"version": "2.16.0"
|
|
37
37
|
}
|
|
38
38
|
}
|
package/package.json.dev
CHANGED