-
Notifications
You must be signed in to change notification settings - Fork 5
/
azuredeploy.json
114 lines (114 loc) · 3.99 KB
/
azuredeploy.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
104
105
106
107
108
109
110
111
112
113
114
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"type": "string",
"metadata": {
"description": "Location of the Bastion."
}
},
"resourceGroupName": {
"type": "string",
"metadata": {
"description": "Resource group name of the Bastion."
}
},
"bastionHostName": {
"type": "string",
"metadata": {
"description": "Name of the Bastion."
}
},
"subnetName": {
"type": "string",
"metadata": {
"description": "Subnet name of the Bastion."
},
"defaultValue": "AzureBastionSubnet"
},
"publicIpAddressName": {
"type": "string",
"metadata": {
"description": "Public IP address name."
}
},
"existingVNETName": {
"type": "string",
"metadata": {
"description": "Vnet name of the Bastion."
}
},
"subnetAddressPrefix": {
"type": "string",
"metadata": {
"description": "Subnet prefix that is dedicated to the Bastion."
}
},
"tags": {
"type": "string",
"defaultValue": "{\"APP\":\"XXX\",\"BUD\":\"XXX\",\"CTC\":\"XXX@XXX\",\"ENV\":\"XXX\"}",
"metadata": {
"description": "Tags of the Bastion and it's public IP."
}
}
},
"variables": {
"tagsbase64": "[base64(parameters('tags'))]"
},
"resources": [
{
"apiVersion": "2019-02-01",
"type": "Microsoft.Network/publicIpAddresses",
"name": "[parameters('publicIpAddressName')]",
"location": "[parameters('location')]",
"sku": {
"name": "Standard"
},
"properties": {
"publicIPAllocationMethod": "Static"
},
"tags": "[base64ToJson(variables('tagsbase64'))]"
},
{
"apiVersion": "2018-04-01",
"type": "Microsoft.Network/virtualNetworks/subnets",
"name": "[concat(parameters('existingVNETName'), '/', parameters('subnetName'))]",
"location": "[parameters('location')]",
"properties": {
"addressPrefix": "[parameters('subnetAddressPrefix')]"
}
},
{
"apiVersion": "2018-10-01",
"type": "Microsoft.Network/bastionHosts",
"name": "[parameters('bastionHostName')]",
"location": "[parameters('location')]",
"dependsOn": [
"[resourceId(parameters('resourceGroupName'), 'Microsoft.Network/publicIpAddresses', parameters('publicIpAddressName'))]"
],
"properties": {
"ipConfigurations": [
{
"name": "[concat(parameters('bastionHostName'),'-CFG')]",
"properties": {
"subnet": {
"id": "[resourceId(parameters('resourceGroupName'), 'Microsoft.Network/virtualNetworks/subnets', parameters('existingVNETName'),parameters('subnetName'))]"
},
"publicIPAddress": {
"id": "[resourceId(parameters('resourceGroupName'), 'Microsoft.Network/publicIpAddresses', parameters('publicIpAddressName'))]"
}
}
}
]
},
"tags": "[base64ToJson(variables('tagsbase64'))]"
}
],
"outputs": {
"resourceID": {
"type": "string",
"value": "[resourceId('Microsoft.Network/bastionHosts', parameters('bastionHostName'))]"
}
}
}