-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars
46 lines (46 loc) · 922 Bytes
/
terraform.tfvars
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
environment = {
"dev" = {
cluster-1 = {
frontend = {
application = "app1-1",
service_endpoints = [],
service_delegations = {}
},
backend = {
application = "app1-2",
service_endpoints = [],
service_delegations = {}
}
},
cluster-2 = {
frontend = {
application = "app2-1",
},
backend = {
application = "app2-2",
}
}
},
"stg" = {
cluster-3 = {
frontend = {
application = "app3-1",
service_endpoints = [],
service_delegations = {}
},
backend = {
application = "app3-2",
service_endpoints = [],
service_delegations = {}
}
},
cluster-4 = {
frontend = {
application = "app4-1",
},
backend = {
application = "app4-2",
}
}
}
}