You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/aks/azure/variables.tf
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,13 @@ variable "vnet_subnet_id" {
19
19
type=string
20
20
}
21
21
22
+
23
+
variable"agents_pool_name" {
24
+
description="The default Azure AKS agentpool (nodepool) name."
25
+
type=string
26
+
default="nodepool"
27
+
}
28
+
22
29
variable"agents_count" {
23
30
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."
24
31
type=number
@@ -37,6 +44,12 @@ variable "agents_size" {
37
44
default="Standard_D4s_v3"
38
45
}
39
46
47
+
variable"agents_labels" {
48
+
description="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."
0 commit comments