Skip to content

Commit

Permalink
Merge pull request #14 from agri-marche/add-vnet-and-subnet-selection
Browse files Browse the repository at this point in the history
dropdown added for subnet, vnet and domain
  • Loading branch information
rtlefrancois authored Aug 31, 2021
2 parents d8d0a7c + 68920cf commit 173a9a5
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,20 @@
"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"
]
},
"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"
]
},
"dnsLabelPrefix": {
"type": "string",
Expand All @@ -36,7 +42,8 @@
"metadata": {
"description": "The FQDN of the AD domain"
},
"defaultValue": "agri-marche.local"
"defaultValue": "agri-marche.local",
"allowedValues": [ "agri-marche.local" ]
},
"domainUsername": {
"type": "string",
Expand Down

0 comments on commit 173a9a5

Please sign in to comment.