-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
743 lines (633 loc) · 25.1 KB
/
variables.tf
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
variable "create_resource_group" {
description = "Whether to create resource group and use it for all networking resources"
}
variable "prefix" {
type = string
description = "(Required) The prefix for the resources created in the specified Azure Resource Group"
}
variable "resource_group_name" {
type = string
description = "The resource group name to be imported"
}
variable "admin_username" {
type = string
description = "The username of the local administrator to be created on the Kubernetes cluster. Set this variable to `null` to turn off the cluster's `linux_profile`. Changing this forces a new resource to be created."
}
variable "agents_availability_zones" {
type = list(string)
description = "(Optional) A list of Availability Zones across which the Node Pool should be spread. Changing this forces a new resource to be created."
default = null
}
variable "agents_count" {
type = number
description = "The number of Agents that should exist in the Agent Pool. Please set `agents_count` `null` while `enable_auto_scaling` is `true` to avoid possible `agents_count` changes."
default = 2
}
variable "agents_labels" {
type = map(string)
description = "(Optional) A map of Kubernetes labels which should be applied to nodes in the Default Node Pool. Changing this forces a new resource to be created."
default = {}
}
variable "agents_max_count" {
type = number
description = "Maximum number of nodes in a pool"
default = 6
}
variable "agents_max_pods" {
type = number
description = "(Optional) The maximum number of pods that can run on each agent. Changing this forces a new resource to be created."
default = 79
}
variable "agents_min_count" {
type = number
description = "Minimum number of nodes in a pool"
default = 1
}
variable "agents_pool_name" {
type = string
description = "The default Azure AKS agentpool (nodepool) name."
default = "nodepool"
nullable = false
}
variable "agents_size" {
type = string
description = "The default virtual machine size for the Kubernetes agents"
default = "Standard_D2s_v3"
}
variable "agents_tags" {
type = map(string)
description = "(Optional) A mapping of tags to assign to the Node Pool."
default = {}
}
variable "agents_type" {
type = string
description = "(Optional) The type of Node Pool which should be created. Possible values are AvailabilitySet and VirtualMachineScaleSets. Defaults to VirtualMachineScaleSets."
default = "VirtualMachineScaleSets"
}
variable "api_server_authorized_ip_ranges" {
type = set(string)
description = "(Optional) The IP ranges to allow for incoming traffic to the server nodes."
default = null
}
variable "auto_scaler_profile" {
type = object({
balance_similar_node_groups = bool
expander = string
max_graceful_termination_sec = number
max_node_provisioning_time = string
max_unready_nodes = number
max_unready_percentage = number
new_pod_scale_up_delay = string
scale_down_delay_after_add = string
scale_down_delay_after_delete = string
scale_down_delay_after_failure = string
scan_interval = string
scale_down_unneeded = string
scale_down_unready = string
scale_down_utilization_threshold = number
empty_bulk_delete_max = number
skip_nodes_with_local_storage = bool
skip_nodes_with_system_pods = bool
})
default = {
balance_similar_node_groups = false
empty_bulk_delete_max = 10
expander = "random"
max_graceful_termination_sec = 600
max_node_provisioning_time = "15m"
max_unready_nodes = 3
max_unready_percentage = 45
new_pod_scale_up_delay = "10s"
scale_down_delay_after_add = "10m"
scale_down_delay_after_delete = "10s"
scale_down_delay_after_failure = "3m"
scale_down_unneeded = "10m"
scale_down_unready = "20m"
scale_down_utilization_threshold = 0.5
scan_interval = "10s"
skip_nodes_with_local_storage = true
skip_nodes_with_system_pods = true
}
}
variable "automatic_channel_upgrade" {
type = string
description = "(OPtional) the upgrade channel for this Kubernetes Cluster. Possible values are patch, rapid, node-image and stable"
default = null
}
variable "azure_policy_enabled" {
type = bool
description = "Enable Azure Policy Addon."
default = false
}
variable "client_id" {
type = string
description = "(Optional) The Client ID (appId) for the Service Principal used for the AKS deployment"
default = ""
nullable = false
}
variable "client_id_identity" {
type = string
description = "The Client ID of the user-defined Managed Identity to be assigned to the Kubelets. If not specified a Managed Identity is created automatically."
}
variable "client_secret" {
type = string
description = "(Optional) The Client Secret (password) for the Service Principal used for the AKS deployment"
default = ""
nullable = false
}
variable "cluster_log_analytics_workspace_name" {
type = string
description = "(Optional) The name of the Analytics workspace"
default = null
}
variable "cluster_name" {
type = string
description = "(Optional) The name for the AKS resources created in the specified Azure Resource Group. This variable overwrites the 'prefix' var (The 'prefix' var will still be applied to the dns_prefix if it is set)"
}
variable "disk_encryption_set_id" {
type = string
description = "(Optional) The ID of the Disk Encryption Set which should be used for the Nodes and Volumes. More information [can be found in the documentation](https://docs.microsoft.com/azure/aks/azure-disk-customer-managed-keys). Changing this forces a new resource to be created."
default = null
}
variable "dns_prefix_private_cluster" {
type = string
description = " (optional) Specifies the DNS prefix to use with private clusters"
default = ""
}
variable "enable_auto_scaling" {
type = bool
description = "Enable node pool autoscaling"
default = true
}
variable "enable_host_encryption" {
type = bool
description = "Enable Host Encryption for default node pool. Encryption at host feature must be enabled on the subscription: https://docs.microsoft.com/azure/virtual-machines/linux/disks-enable-host-based-encryption-cli"
default = false
}
variable "enable_node_public_ip" {
type = bool
description = "(Optional) Should nodes in this Node Pool have a Public IP Address? Defaults to false."
default = false
}
variable "http_application_routing_enabled" {
type = bool
description = "Enable HTTP Application Routing Addon (forces recreation)."
default = false
}
variable "identity_ids" {
type = list(string)
description = "(Optional) Specifies a list of User Assigned Managed Identity IDs to be assigned to this Kubernetes Cluster."
default = null
}
variable "http_proxy_config" {
type = map(object({
http_proxy = string
https_proxy = string
no_proxy = list(string)
trusted_ca = string
}))
default = null
}
variable "identity_type" {
type = string
description = "(Optional) The type of identity used for the managed cluster. Conflict with `client_id` and `client_secret`. Possible values are `SystemAssigned`, `UserAssigned`, `SystemAssigned, UserAssigned`(to enable both). If `UserAssigned` or `SystemAssigned, UserAssigned` is set, an `identity_ids` must be set as well."
default = "SystemAssigned"
validation {
condition = var.identity_type == "SystemAssigned" || var.identity_type == "UserAssigned" || var.identity_type == "SystemAssigned, UserAssigned"
error_message = "`identity_type`'s possible values are `SystemAssigned`, `UserAssigned`, `SystemAssigned, UserAssigned`(to enable both)."
}
}
variable "ingress_application_gateway_enabled" {
type = bool
description = "Whether to deploy the Application Gateway ingress controller to this Kubernetes Cluster?"
default = false
nullable = false
}
variable "ingress_application_gateway_id" {
type = string
description = "The ID of the Application Gateway to integrate with the ingress controller of this Kubernetes Cluster."
default = null
}
variable "ingress_application_gateway_name" {
type = string
description = "The name of the Application Gateway to be used or created in the Nodepool Resource Group, which in turn will be integrated with the ingress controller of this Kubernetes Cluster."
default = null
}
variable "ingress_application_gateway_subnet_cidr" {
type = string
description = "The subnet CIDR to be used to create an Application Gateway, which in turn will be integrated with the ingress controller of this Kubernetes Cluster."
default = null
}
variable "ingress_application_gateway_subnet_id" {
type = string
description = "The ID of the subnet on which to create an Application Gateway, which in turn will be integrated with the ingress controller of this Kubernetes Cluster."
default = null
}
variable "key_vault_secrets_provider_enabled" {
type = bool
description = "(Optional) Whether to use the Azure Key Vault Provider for Secrets Store CSI Driver in an AKS cluster. For more details: https://docs.microsoft.com/en-us/azure/aks/csi-secrets-store-driver"
default = false
nullable = false
}
variable "kubernetes_version" {
type = string
description = "Specify which Kubernetes release to use. The default used is the latest Kubernetes version available in the region"
default = null
}
variable "kubelet_config" {
type = map(object({
allowed_unsafe_sysctls = list(string)
container_log_max_line = number
container_log_max_size_mb = string
cpu_cfs_quota_enabled = bool
cpu_cfs_quota_period = string
cpu_manager_policy = string
image_gc_high_threshold = number
image_gc_low_threshold = number
pod_max_pid = number
topology_manager_policy = string
}))
description = "(Optional)block for kublet"
default = null
}
variable "load_balancer_profile" {
type = map(object({
idle_timeout_in_minutes = number
managed_outbound_ip_count = number
outbound_ip_prefix_ids = number
outbound_ip_address_ids = string
outbound_ports_allocated = number
}))
description = "Optional -block for load balancer profile in network profile"
default = null
}
variable "local_account_disabled" {
type = bool
description = "(Optional) - If `true` local accounts will be disabled. Defaults to `false`. See [the documentation](https://docs.microsoft.com/azure/aks/managed-aad#disable-local-accounts) for more information."
default = null
}
variable "location" {
type = string
description = "Location of cluster, if not defined it will be read from the resource-group"
default = null
}
variable "log_analytics_solution_id" {
type = string
description = "(Optional) Existing azurerm_log_analytics_solution ID. Providing ID disables creation of azurerm_log_analytics_solution."
default = null
nullable = true
}
variable "log_analytics_workspace" {
type = map(object({
id = string
name = string
}))
description = "(Optional) Existing azurerm_log_analytics_workspace to attach azurerm_log_analytics_solution. Providing the config disables creation of azurerm_log_analytics_workspace."
default = null
nullable = true
}
variable "log_analytics_workspace_enabled" {
type = bool
description = "Enable the integration of azurerm_log_analytics_workspace and azurerm_log_analytics_solution: https://docs.microsoft.com/en-us/azure/azure-monitor/containers/container-insights-onboard"
default = true
nullable = false
}
variable "log_analytics_workspace_resource_group_name" {
type = string
description = "(Optional) Resource group name to create azurerm_log_analytics_solution."
default = null
nullable = true
}
variable "log_analytics_workspace_sku" {
type = string
description = "The SKU (pricing level) of the Log Analytics workspace. For new subscriptions the SKU should be set to PerGB2018"
default = "PerGB2018"
}
variable "log_retention_in_days" {
type = number
description = "The retention period for the logs in days"
default = 30
}
variable "maintenance_window" {
type = object({
allowed = map(object({
day = string
hours = list(number)
}))
not_allowed = map(object({
end = string
start = string
}))
})
default = {
allowed = {
allowed1 = {
day = "Sunday"
hours = [1]
}
}
not_allowed = null
}
}
variable "nat_gateway_profile" {
type = map(number)
description = "(optional) part of network profile"
default = null
}
variable "net_profile_dns_service_ip" {
type = string
description = "(Optional) IP address within the Kubernetes service address range that will be used by cluster service discovery (kube-dns). Changing this forces a new resource to be created."
default = null
}
variable "net_profile_docker_bridge_cidr" {
type = string
description = "(Optional) IP address (in CIDR notation) used as the Docker bridge IP address on nodes. Changing this forces a new resource to be created."
default = null
}
variable "net_profile_outbound_type" {
type = string
description = "(Optional) The outbound (egress) routing method which should be used for this Kubernetes Cluster. Possible values are loadBalancer and userDefinedRouting. Defaults to loadBalancer."
default = "loadBalancer"
}
variable "net_profile_pod_cidr" {
type = string
description = " (Optional) The CIDR to use for pod IP addresses. This field can only be set when network_plugin is set to kubenet. Changing this forces a new resource to be created."
default = null
}
variable "net_profile_service_cidr" {
type = string
description = "(Optional) The Network Range used by the Kubernetes service. Changing this forces a new resource to be created."
default = null
}
variable "node_count" {
type = number
description = "The initial number of nodes which should exist in this Node Pool. If specified this must be between 1 and 1000 and between min_count and max_count."
default = null
}
variable "network_plugin" {
type = string
description = "Network plugin to use for networking."
default = "kubenet"
validation {
condition = (
var.network_plugin == "kubenet" ||
var.network_plugin == "azure"
)
error_message = "Network Plugin must set to kubenet or azure."
}
}
variable "network_policy" {
type = string
description = " (Optional) Sets up network policy to be used with Azure CNI. Network policy allows us to control the traffic flow between pods. Currently supported values are calico and azure. Changing this forces a new resource to be created."
default = null
validation {
condition = (
(var.network_policy == null) ||
(var.network_policy == "azure") ||
(var.network_policy == "calico")
)
error_message = "Network pollicy must be azure or calico."
}
}
variable "node_resource_group" {
type = string
description = "The auto-generated Resource Group which contains the resources for this Managed Kubernetes Cluster. Changing this forces a new resource to be created."
default = null
}
variable "oidc_issuer_enabled" {
description = "Enable or Disable the OIDC issuer URL. Defaults to false."
type = bool
default = false
}
variable "oms_agent" {
type = map(string)
}
variable "object_id" {
type = string
description = "object id "
}
variable "only_critical_addons_enabled" {
type = bool
description = "(Optional) Enabling this option will taint default node pool with `CriticalAddonsOnly=true:NoSchedule` taint. Changing this forces a new resource to be created."
default = null
}
variable "open_service_mesh_enabled" {
type = bool
description = "Is Open Service Mesh enabled? For more details, please visit [Open Service Mesh for AKS](https://docs.microsoft.com/azure/aks/open-service-mesh-about)."
default = null
}
variable "orchestrator_version" {
type = string
description = "Specify which Kubernetes release to use for the orchestration layer. The default used is the latest Kubernetes version available in the region"
default = null
}
variable "os_disk_size_gb" {
type = number
description = "Disk size of nodes in GBs."
default = 50
}
variable "os_disk_type" {
type = string
description = "The type of disk which should be used for the Operating System. Possible values are `Ephemeral` and `Managed`. Defaults to `Managed`. Changing this forces a new resource to be created."
default = "Managed"
nullable = false
}
variable "private_cluster_enabled" {
type = bool
description = "If true cluster API server will be exposed only on internal IP address and available only in cluster vnet."
default = false
}
variable "private_cluster_public_fqdn_enabled" {
type = bool
description = "(Optional) Specifies whether a Public FQDN for this Private Cluster should be added. Defaults to `false`."
default = false
}
variable "private_dns_zone_id" {
type = string
description = "(Optional) Either the ID of Private DNS Zone which should be delegated to this Cluster, `System` to have AKS manage this or `None`. In case of `None` you will need to bring your own DNS server and set up resolving, otherwise cluster will have issues after provisioning. Changing this forces a new resource to be created."
default = null
}
variable "public_ssh_key" {
type = string
description = "A custom ssh key to control access to the AKS cluster. Changing this forces a new resource to be created."
}
variable "public_network_access_enabled" {
type = bool
description = "Whether public network access is allowed for this Kubernetes Cluster"
default = true
}
variable "run_command_enabled" {
type = bool
description = " Whether to enable run command for the cluster or not"
default = true
}
variable "rbac_aad_admin_group_object_ids" {
type = list(string)
description = "Object ID of groups with admin access."
default = null
}
variable "rbac_aad_azure_rbac_enabled" {
type = bool
description = "(Optional) Is Role Based Access Control based on Azure AD enabled?"
default = null
}
variable "rbac_aad_client_app_id" {
type = string
description = "The Client ID of an Azure Active Directory Application."
default = null
}
variable "rbac_aad_managed" {
type = bool
description = "Is the Azure Active Directory integration Managed, meaning that Azure will create/manage the Service Principal used for integration."
default = false
}
variable "rbac_aad_server_app_id" {
type = string
description = "The Server ID of an Azure Active Directory Application."
default = null
}
variable "rbac_aad_server_app_secret" {
type = string
description = "The Server Secret of an Azure Active Directory Application."
default = null
}
variable "rbac_aad_tenant_id" {
type = string
description = "(Optional) The Tenant ID used for Azure Active Directory Application. If this isn't specified the Tenant ID of the current Subscription is used."
default = null
}
variable "role_based_access_control_enabled" {
type = bool
description = "Enable Role Based Access Control."
default = false
nullable = false
}
variable "secret_rotation_enabled" {
type = bool
description = "Is secret rotation enabled? This variable is only used when `key_vault_secrets_provider_enabled` is `true` and defaults to `false`"
default = false
nullable = false
}
variable "secret_rotation_interval" {
type = string
description = "The interval to poll for secret rotation. This attribute is only set when `secret_rotation` is `true` and defaults to `2m`"
default = "2m"
nullable = false
}
variable "sku_tier" {
type = string
description = "The SKU Tier that should be used for this Kubernetes Cluster. Possible values are Free and Paid"
default = "Free"
validation {
condition = contains(["free", "paid"], lower(var.sku_tier))
error_message = "Available SKU Tiers are \"Free\" and \"Paid\"."
}
}
variable "subnet_name" {
type = string
description = "name of subnet"
}
variable "tags" {
type = map(string)
description = "Any tags that should be present on the AKS cluster resources"
default = {}
}
variable "windows_profile" {
type = map(string)
default = null
}
variable "vnet_subnet_id" {
type = string
description = "(Optional) The ID of a Subnet where the Kubernetes Node Pool should exist. Changing this forces a new resource to be created."
default = null
}
variable "linux_os_config" {
description = "(Optional) block inside node pool"
type = object({
allowed_unsafe_sysctls = number
sysctl_config = map(any)
transparent_huge_page_defrag = string
transparent_huge_page_enabled = string
})
default = null
}
variable "upgrade_settings" {
type = map(map(number))
description = "optional block in node pool"
default = null
}
variable "user_assigned_identity_id" {
type = string
description = "The ID of the User Assigned Identity assigned to the Kubelets. If not specified a Managed Identity is created automatically."
}
#---------------------Additional node pools------------------------------#
variable "additional_node_pools" {
type = map(object({
vm_size = string
availability_zones = list(number)
node_count = number
enable_auto_scaling = bool
min_count = number
max_count = number
enable_host_encryption = bool
enable_node_public_ip = bool
max_pods = number
node_labels = map(string)
only_critical_addons_enabled = bool
orchestrator_version = number
os_disk_size_gb = number
os_disk_type = string
type = string
tags = map(any)
subnet_id = string # must be a key from node_pool_subnets variable
//max_surge = "1"
os_type = string
}))
default = null
description = "want to create additional node pools"
}
variable "node_taints" {
type = list(string)
description = "A list of Kubernetes taints which should be applied to nodes in the agent pool "
default = null
}
variable "eviction_policy" {
type = string
description = "The Eviction Policy which should be used for Virtual Machines within the Virtual Machine Scale Set powering this Node Pool."
default = null
}
variable "proximity_placement_group_id" {
type = string
description = "The ID of the Proximity Placement Group where the Virtual Machine Scale Set that powers this Node Pool will be placed."
default = null
}
variable "spot_max_price" {
type = number
description = "The maximum price you're willing to pay in USD per Virtual Machine"
default = null
}
variable "priority" {
type = string
description = "The Priority for Virtual Machines within the Virtual Machine Scale Set that powers this Node Pool"
default = null
}
variable "mode" {
type = string
description = "Should this Node Pool be used for System or User resources?"
default = null
}
variable "linux_os_config_additional" {
type = map(object({
swap_file_size_mb = number
transparent_huge_page_defrag = string
transparent_huge_page_enabled = string
sysctl_config = map(any)
}))
description = "for addtitionl node pools"
default = null
}
variable "upgrade_settings_additional" {
type = map(map(number))
description = "optional block in node pool"
default = null
}