@percepta/create 4.1.11 → 4.1.12

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@percepta/create",
3
- "version": "4.1.11",
3
+ "version": "4.1.12",
4
4
  "description": "Scaffold a new Mosaic package",
5
5
  "keywords": [
6
6
  "cli",
@@ -175,9 +175,13 @@ spec:
175
175
  {{ end }}
176
176
  {{ if ne (input "azure_postgresql_private_dns_zone_id") "" }}
177
177
  private_dns_zone_id: '{{ input "azure_postgresql_private_dns_zone_id" }}'
178
+ {{ else }}
179
+ private_dns_zone_id: '{{ (blueprintInstallation "mosaic").outputs.azure_postgresql_private_dns_zone_id }}'
178
180
  {{ end }}
179
181
  {{ if ne (input "azure_postgresql_subnet_id") "" }}
180
182
  subnet_id: '{{ input "azure_postgresql_subnet_id" }}'
183
+ {{ else }}
184
+ subnet_id: '{{ (blueprintInstallation "mosaic").outputs.azure_postgresql_subnet_id }}'
181
185
  {{ end }}
182
186
  {{ if ne (input "azure_postgresql_subnet_address_prefix") "" }}
183
187
  subnet_address_prefix: '{{ input "azure_postgresql_subnet_address_prefix" }}'