-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathazureDeploy.parameters.json
70 lines (70 loc) · 2.12 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
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"adminUsername": {
"value": "architech"
},
"adminPassword": {
"reference": {
"keyVault": {
"id": "/subscriptions/17ef54cf-017b-4bf5-bdb8-90d18438ef14/resourceGroups/architech-training-keyvault-rg/providers/Microsoft.KeyVault/vaults/architech-training-vault"
},
"secretName": "adminPassword"
}
},
"storageAccessKey": {
"reference": {
"keyVault": {
"id": "/subscriptions/17ef54cf-017b-4bf5-bdb8-90d18438ef14/resourceGroups/architech-training-keyvault-rg/providers/Microsoft.KeyVault/vaults/architech-training-vault"
},
"secretName": "storageAccessKey"
}
},
"sshPrivateKey": {
"value": "id_rsa"
},
"sshPubKey": {
"value": "id_rsa.pub"
},
"configureSshAndAnsibleScriptName": {
"value": "configureSshAndAnsible.sh"
},
"ansiblePlaybooks": {
"value": "playbooks.tar.gz"
},
"vnetName": {
"value": "architech-training-vnet"
},
"vnetAddressPrefix": {
"value": "192.168.0.0/16"
},
"appSubnetAddressPrefix": {
"value": "192.168.1.0/24"
},
"dbSubnetAddressPrefix": {
"value": "192.168.2.0/24"
},
"jumpboxSubnetAddressPrefix": {
"value": "192.168.3.0/24"
},
"storageAccountName": {
"value": "architechtraining"
},
"vhdContainerName": {
"value": "vhds"
},
"keyContainerName": {
"value": "keys"
},
"scriptContainerName": {
"value": "scripts"
},
"jumpboxDnsPrefix": {
"value": "jumpbox-training-ansible"
},
"appDnsPrefix": {
"value": "architech-training-ansible"
}
}
}