@absolutejs/deploy 0.16.0 → 0.16.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/dist/gcp.js +2 -2
- package/dist/gcp.js.map +3 -3
- package/package.json +1 -1
package/dist/gcp.js
CHANGED
|
@@ -10456,7 +10456,7 @@ var createGcpInfrastructureProvider = (options) => {
|
|
|
10456
10456
|
await request({
|
|
10457
10457
|
data: {
|
|
10458
10458
|
name: input.name,
|
|
10459
|
-
...input.userData ? { metadata: { items: [{ key: "
|
|
10459
|
+
...input.userData ? { metadata: { items: [{ key: "user-data", value: input.userData }] } } : {}
|
|
10460
10460
|
},
|
|
10461
10461
|
method: "POST",
|
|
10462
10462
|
url: `${COMPUTE_BASE_URL}/projects/${encodeURIComponent(options.projectId)}/zones/${encodeURIComponent(zone)}/instances?requestId=${encodeURIComponent(input.idempotencyKey)}&sourceInstanceTemplate=${encodeURIComponent(normalizeTemplate(options.projectId, options.instanceTemplate))}`
|
|
@@ -10486,5 +10486,5 @@ export {
|
|
|
10486
10486
|
GcpInfrastructureError
|
|
10487
10487
|
};
|
|
10488
10488
|
|
|
10489
|
-
//# debugId=
|
|
10489
|
+
//# debugId=C869CEEDA347495664756E2164756E21
|
|
10490
10490
|
//# sourceMappingURL=gcp.js.map
|