forked from gfortil/terraform-azurerm-hpcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaks.auto.tfvars.example
127 lines (113 loc) · 2.94 KB
/
aks.auto.tfvars.example
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
cluster_version = "1.25"
cluster_ordinal = 1 //cluster name suffix
sku_tier = "free"
dns_resource_group = "app-dns-prod-eastus2"
internal_domain = "my-dns-zone.io"
hpcc_log_analytics_enabled = false
rbac_bindings = {
cluster_admin_users = {
# "service_principal1" = "",
# "user1" = ""
# "user2" = ""
}
cluster_view_users = {}
cluster_view_groups = []
}
core_services_config = {
alertmanager = {
smtp_host = "smtp-hostname.ds:25"
smtp_from = "[email protected]"
routes = []
receivers = []
}
# coredns = {
# forward_zones = {
# "" = ""
# }
# }
external_dns = {
public_domain_filters = ["my-dns-zone.io"]
}
# cert_manager = {
# acme_dns_zones = ["my-dns-zone.io"]
# default_issuer_name = "zerossl"
# }
ingress_internal_core = {
domain = "my-dns-zone.io"
subdomain_suffix = "hpcc" // dns record suffix //must be unique accross subscription
public_dns = true
}
}
cluster_endpoint_access_cidrs = ["0.0.0.0/0"]
availability_zones = [1,2]
node_groups = {
thorpool = {
ultra_ssd = false
node_os = "ubuntu"
node_type = "gp" # gp, gpd, mem, memd, stor
node_type_version = "v2" # v1, v2
node_size = "2xlarge" # large, xlarge, 2xlarge, 4xlarge, 8xlarge, 12xlarge, 16xlarge, 18xlarge, 20xlarge, 24xlarge, 26xlarge
single_group = false
min_capacity = 1
max_capacity = 3
# placement_group_key = null
labels = {
"lnrs.io/tier" = "standard"
"workload" = "thorpool"
}
taints = []
tags = {}
},
roxiepool = {
ultra_ssd = false
node_os = "ubuntu"
node_type = "gp"
node_type_version = "v2"
node_size = "2xlarge"
single_group = false
min_capacity = 1
max_capacity = 3
# placement_group_key = null
labels = {
"lnrs.io/tier" = "standard"
"workload" = "roxiepool"
}
taints = []
tags = {}
},
servpool = {
ultra_ssd = false
node_os = "ubuntu"
node_type = "gpd"
node_type_version = "v1"
node_size = "4xlarge"
single_group = false
min_capacity = 1
max_capacity = 3
# placement_group_key = null
labels = {
"lnrs.io/tier" = "standard"
"workload" = "servpool"
}
taints = []
tags = {}
},
spraypool = {
ultra_ssd = false
node_os = "ubuntu"
node_type = "gp"
node_type_version = "v1"
node_size = "2xlarge"
single_group = false
min_capacity = 1
max_capacity = 3
# placement_group_key = null
labels = {
"lnrs.io/tier" = "standard"
"workload" = "spraypool"
"spray-service" = "spraypool"
}
taints = []
tags = {}
}
}