Skip to content

Commit 1a84af1

Browse files
committed
Fix malformed JSON
Added Schema and parameters entry
1 parent 805e040 commit 1a84af1

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
{
2+
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
3+
"contentVersion": "1.0.0.0",
4+
"parameters": {
25
"addressPrefix": {
3-
"value": "10.0.0.0/16"
6+
"value": "10.0.0.0/16"
47
},
58
"subnetPrefix": {
6-
"value": "10.0.0.0/24"
9+
"value": "10.0.0.0/24"
710
},
811
"skuName": {
9-
"value": "Standard_Small"
12+
"value": "Standard_Small"
1013
},
1114
"capacity": {
12-
"value": 2
15+
"value": 2
1316
},
1417
"backendIpAddress1": {
15-
"value": "10.0.1.10"
18+
"value": "10.0.1.10"
1619
},
1720
"backendIpAddress2": {
18-
"value": "10.0.1.11"
21+
"value": "10.0.1.11"
1922
}
23+
}
2024
}

0 commit comments

Comments
 (0)