forked from jasonmeurer/azure3micmanaged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AzureDeploy.parameters.json
103 lines (103 loc) · 2.85 KB
/
AzureDeploy.parameters.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"tagvalues": {
"value": {
"Owner": "changeme",
"Department": "changeme",
"Application": "changeme"
}
},
"virtualNetworkName": {
"metadata": {
"description": "Name of the Virtual Network (VNET)"
},
"value": "fw-eastus2-vnet"
},
"virtualNetworkExistingRGName": {
"value": "rg-hubnetwork",
"metadata": {
"description": "Name of resource group of existing VNET (if applicable)"
}
},
"vmName": {
"metadata": {
"description": "Name of VM-Series FW in the Azure portal"
},
"value": "VM-FW1"
},
"vmSize": {
"metadata": {
"description": "Azure VM size for VM-Series"
},
"value": "Standard_DS3_v2"
},
"subnet0Name": {
"value": "fw-eastus2-subnet-mgmt",
"metadata": {
"description": "Subnet for Management"
}
},
"subnet1Name": {
"value": "fw-eastus2-subnet-untrust",
"metadata": {
"description": "Subnet for Untrust"
}
},
"subnet2Name": {
"value": "fw-eastus2-subnet-trust",
"metadata": {
"description": "Subnet for Trust"
}
},
"subnet0StartAddress": {
"value": "192.168.1.4",
"metadata": {
"description": "Mgmt subnet start address"
}
},
"subnet1StartAddress": {
"value": "192.168.1.20",
"metadata": {
"description": "Untrust subnet start address"
}
},
"subnet2StartAddress": {
"value": "192.168.1.36",
"metadata": {
"description": "Trust subnet start address"
}
},
"adminUsername": {
"value": "paloalto",
"metadata": {
"description": "Username of the administrator account of VM-Series"
}
},
"adminPassword": {
"value": "GEN-PASSWORD",
"metadata": {
"description": "Password for the administrator account of VM-Series"
}
},
"publicIPAddressName": {
"value": "VM-fw1-publicip",
"metadata": {
"description": "Name of FW1 MGMT Public Address"
}
},
"imageVersion": {
"value": "latest",
"metadata": {
"description": "PAN OS Version"
}
},
"imageSku": {
"value": "byol",
"metadata": {
"description": "Firewall License Model"
}
}
}
}