@pulumi/openstack 5.6.0-alpha.1785222997 → 5.6.0-alpha.1786015898
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/compute/instance.d.ts +2 -2
- package/compute/instance.js +2 -2
- package/package.json +2 -2
package/compute/instance.d.ts
CHANGED
|
@@ -201,11 +201,11 @@ import * as outputs from "../types/output";
|
|
|
201
201
|
* });
|
|
202
202
|
* const vm_port = openstack.networking.getPortOutput({
|
|
203
203
|
* deviceId: multi_net.id,
|
|
204
|
-
* networkId: multi_net.networks
|
|
204
|
+
* networkId: multi_net.networks[1].uuid,
|
|
205
205
|
* });
|
|
206
206
|
* const fipVm = new openstack.networking.FloatingIpAssociate("fip_vm", {
|
|
207
207
|
* floatingIp: myip.address,
|
|
208
|
-
* portId: vm_port.
|
|
208
|
+
* portId: vm_port.id,
|
|
209
209
|
* });
|
|
210
210
|
* ```
|
|
211
211
|
*
|
package/compute/instance.js
CHANGED
|
@@ -228,11 +228,11 @@ const utilities = __importStar(require("../utilities"));
|
|
|
228
228
|
* });
|
|
229
229
|
* const vm_port = openstack.networking.getPortOutput({
|
|
230
230
|
* deviceId: multi_net.id,
|
|
231
|
-
* networkId: multi_net.networks
|
|
231
|
+
* networkId: multi_net.networks[1].uuid,
|
|
232
232
|
* });
|
|
233
233
|
* const fipVm = new openstack.networking.FloatingIpAssociate("fip_vm", {
|
|
234
234
|
* floatingIp: myip.address,
|
|
235
|
-
* portId: vm_port.
|
|
235
|
+
* portId: vm_port.id,
|
|
236
236
|
* });
|
|
237
237
|
* ```
|
|
238
238
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/openstack",
|
|
3
|
-
"version": "5.6.0-alpha.
|
|
3
|
+
"version": "5.6.0-alpha.1786015898",
|
|
4
4
|
"description": "A Pulumi package for creating and managing OpenStack cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"pulumi": {
|
|
23
23
|
"resource": true,
|
|
24
24
|
"name": "openstack",
|
|
25
|
-
"version": "5.6.0-alpha.
|
|
25
|
+
"version": "5.6.0-alpha.1786015898"
|
|
26
26
|
}
|
|
27
27
|
}
|