-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathazuredeploy.parameters.json
64 lines (63 loc) · 1.39 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
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"ContainerGroupName": {
"value": "adoagent"
},
"numberOfInstances": {
"value": 10
},
"Image": {
"value": "<imageName>"
},
"ImageVersion": {
"value": "<imageVersion>"
},
"ADO_Account": {
"value": "https://dev.azure.com/<yourdevopsorg>"
},
"ADO_Pool": {
"value": "<ADO Pool Name>"
},
"keyVaultName":{
"value": "<name of the keyvault"
},
"keyVaultRG":{
"value": "<key vault resource group name>"
},
"secretName":{
"value": "<secret name for the ADO PAT>"
},
"vnetName": {
"value": "<vNetName>"
},
"vnetRGName":{
"value": "<Name of the VNET Resource Group>"
},
"subnetName":{
"value": "<delegatedsubnetName>"
},
"subnetPrefix":{
"value": "<Subnet CIDR PRefix"
},
"agentCPU":{
"value": 1
},
"agentMem":{
"value": 3
},
"containerRegistryName":{
"value": "<registry Name>"
},
"containerRegistryRG":{
"value": "<registry Resource Group>"
},
"sourceBranch":{
"value": "master"
},
"dockerSourceRepo": {
"value": "https://github.com/everazurerest/aci-pipelines-agent-linux.git"
}
}
}