-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathterraform-advanced.tfvars.json.sample
84 lines (84 loc) · 2.61 KB
/
terraform-advanced.tfvars.json.sample
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
{
"k8s_clusters": {
"aws": [
{
"name": "aws-mp",
"region": "eu-west-1",
"version": "1.27",
"tetrate": {
"management_plane": true,
"control_plane": true
},
"addons": {
"argocd": {
"enabled": true
},
"external-dns": {
"enabled": true,
"dns_zone": "aws-se.sandbox.tetrate.io"
},
"tsb-monitoring": {
"enabled": true
}
}
}
],
"azure": [
{
"name": "azure-cp",
"region": "eastus",
"version": "1.27",
"tetrate": {
"control_plane": true
},
"addons": {
"argocd": {
"enabled": true
},
"external-dns": {
"enabled": true,
"dns_zone": "azure.sandbox.tetrate.io"
},
"tsb-monitoring": {
"enabled": true
}
}
}
],
"gcp": [
{
"name": "gcp-cp",
"region": "us-west1",
"version": "1.27",
"tetrate": {
"control_plane": true
},
"addons": {
"argocd": {
"enabled": true
},
"external-dns": {
"enabled": true,
"dns_zone": "gcp.sandbox.tetrate.io"
},
"tsb-monitoring": {
"enabled": true
}
}
}
]
},
"name_prefix": "<YOUR UNIQUE PREFIX NAME TO BE CREATED>",
"tags": {
"tetrate_owner": "Change me! (https://github.com/tetrateio/tetrate/blob/master/cloud/docs/misc/tags.md)",
"tetrate_team": "Change me! (https://github.com/tetrateio/tetrate/blob/master/cloud/docs/misc/tags.md)"
},
"tetrate": {
"fqdn": "<YOUR UNIQUE PREFIX NAME TO BE CREATED>.aws.sandbox.tetrate.io",
"image_sync_apikey": "<TSB_REPO_APIKEY>",
"image_sync_username": "<TSB_REPO_USERNAME>",
"organization": "tetrate",
"password": "Tetrate123",
"version": "1.7.0"
}
}