-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathvnet-simple.json
30 lines (30 loc) · 895 Bytes
/
vnet-simple.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables":{},
"resources": [
{
"apiVersion": "2018-04-01",
"name": "demo-vnet",
"type": "Microsoft.Network/virtualNetworks",
"location": "australiaeast",
"properties": {
"addressSpace": {
"addressPrefixes": [
"10.1.0.0/16"
]
},
"subnets": [
{
"name": "Subnet",
"properties": {
"addressPrefix": "10.1.0.0/24"
}
}
],
"enableDdosProtection": "false"
}
}
]
}