0% found this document useful (0 votes)
39 views

Template Variables

Uploaded by

Rajesh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
39 views

Template Variables

Uploaded by

Rajesh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

{

"$schema": "https://schema.management.azure.com/schemas/2015-01-
01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {
"networkaddress": "10.5.0.0/16",
"networkname": "armnewnetwork",
"subnetname": "default",
"subnetaddress": "10.5.0.0/24"
},
"resources": [{
"apiVersion": "2015-06-15",
"type": "Microsoft.Network/virtualNetworks",
"name": "[variables('networkname')]",
"location": "[resourceGroup().location]",
"properties": {
"addressSpace": {
"addressPrefixes": [
"[variables('networkaddress')]"
]
},
"subnets": [{
"name": "[variables('subnetname')]",
"properties": {
"addressPrefix": "[variables('subnetaddress')]"
}
}]
}
}]
}

You might also like