@@ -52,15 +52,9 @@ variable "platform_admins" {
5252 default = []
5353}
5454
55- variable "landing_zone_admins" {
56- type = list (string )
57- description = " List of landing zone administrators."
58- default = []
59- }
60-
61- # #############################
62- # # CONNECTIVITY - GLOBAL ##
63- # #############################
55+ # ##########################
56+ # # CONNECTIVITY - GLOBAL ##
57+ # ##########################
6458
6559variable "network_areas" {
6660 type = list (object ({
@@ -75,9 +69,9 @@ variable "network_areas" {
7569 description = " List of network areas to create with their IP ranges and configuration."
7670}
7771
78- # ###############################
79- # # CONNECTIVITY - REGIONAL ##
80- # ###############################
72+ # ############################
73+ # # CONNECTIVITY - REGIONAL ##
74+ # ############################
8175
8276variable "connectivity_regional_network_area" {
8377 type = string
@@ -144,46 +138,6 @@ variable "landing_zones" {
144138 description = string
145139 permissions = list (string )
146140 })), [])
147- kubernetes_clusters = optional (map (object ({
148- kubernetes_version = string
149- enable_kubernetes_version_updates = optional (bool , true )
150- enable_machine_image_version_updates = optional (bool , true )
151- hibernations = optional (list (object ({
152- start = string
153- end = string
154- timezone = optional (string , " Europe/Berlin" )
155- })), [])
156- node_pools = list (object ({
157- name = string
158- machine_type = string
159- availability_zones = list (string )
160- os_version_min = optional (string )
161- minimum = number
162- maximum = number
163- max_surge = optional (number )
164- max_unavailable = optional (number )
165- labels = optional (map (string ))
166- taints = optional (list (object ({
167- key = string
168- value = string
169- effect = string
170- })))
171- }))
172- extensions = optional (object ({
173- acl = optional (object ({
174- allowed_cidrs = list (string )
175- enabled = bool
176- }))
177- dns = optional (object ({
178- enabled = bool
179- zones = optional (list (string ))
180- }))
181- observability = optional (object ({
182- enabled = bool
183- instance_id = optional (string )
184- }))
185- }))
186- })), {})
187141 }))
188142 description = " Map of landing zones to create. Set corporate = true for network area connectivity, false for public."
189143 default = {}
0 commit comments