Skip to content

Commit

Permalink
added subnet and virtual network choices
Browse files Browse the repository at this point in the history
  • Loading branch information
rtlefrancois committed Sep 27, 2021
1 parent c966189 commit 5df18b9
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,22 @@
"metadata": {
"description": "Existing VNET that have access to at least one Domain Controller"
},
"defaultValue": "vnet-prod-spoke-workload"
"defaultValue": "vnet-prod-spoke-workload",
"allowedValues": [
"vnet-prod-spoke-workload",
"vnet-prod-dmz"
]
},
"existingSubnetName": {
"type": "string",
"metadata": {
"description": "Existing subnet that have access to at least one Domain Controller"
},
"defaultValue": "snet-prod-spoke-workload-default"
"defaultValue": "snet-prod-spoke-workload-default",
"allowedValues": [
"snet-prod-spoke-workload-default",
"snet-prod-dmz-default"
]
},
"dnsLabelPrefix": {
"type": "string",
Expand Down

0 comments on commit 5df18b9

Please sign in to comment.