-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf.json
48 lines (48 loc) · 1.53 KB
/
variables.tf.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
{
"variable": {
"do_region": {
"type": "string",
"description": "The region in which to provision resources"
},
"do_token": {
"type": "string",
"description": "Digital Ocean API access token"
},
"do_k8s_version": {
"type": "string",
"description": "Digital Ocean-specific K8s cluster version"
},
"az_sp_id": {
"type": "string",
"description": "The ID (GUID) of the service principal used to provision resources"
},
"az_sp_secret": {
"type": "string",
"description": "The secret for the service principal used to provision resources"
},
"az_region": {
"type": "string",
"description": "The region in which to provision resource"
},
"az_rg": {
"type": "string",
"description": "The resource group in which to provision resources"
},
"az_environment": {
"type": "string",
"description": "[Ideally] One of Production, QA, Development, etc."
},
"az_prefix": {
"type": "string",
"description": "Used to name the cluster and as DNS prefix"
},
"az_vm_size": {
"type": "string",
"description": "Azure VM size to use for all nodes"
},
"az_k8s_version": {
"type": "string",
"description": "The version of Kubernetes to deploy"
}
}
}