-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprod.tfvars
60 lines (53 loc) · 1.2 KB
/
prod.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# If you don't want to manage with files, choose other means such as environment variables.
# https://www.terraform.io/docs/language/values/variables.html
prefix = "yours"
suffix = "prod"
aks = {
switch = "blue"
rg = {
location = "japaneast"
}
node_pool = {
system = {
node_count = 3
only_critical_addons_enabled = true
}
user = {
// one pool per zone
// total nodes = node_count * 3 AZ
node_count = 3
priority = "Regular"
}
}
aad = {
admin_group_object_ids = ["your-aad-admin-group-object-id"]
}
}
log_analytics = {
workspace = {
name = "your-la-workspace-name"
rg_name = "your-la-workspace-resource-group-name"
}
}
prometheus = {
enabled = false
data_collection_endpoint_name = "dce-amw-prom"
data_collection_rule_name = "dcr-amw-prom"
}
flux = {
git_repository = {
url = "https://github.com/your-account/your-repo.git"
reference_type = "branch"
reference_value = "main"
}
}
# flux_git_user = "<sensitive>"
# flux_git_token = "<sensitive>"
demoapp = {
ingress_svc = {
ip = "10.1.4.4"
}
key_vault = {
name_body = "kv-demoapp"
}
}