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
description="(Optional) The SKU Tier that should be used for this Kubernetes Cluster. Possible values are Free and Paid (which includes the Uptime SLA). Defaults to Free."
63
52
default="Free"
@@ -71,7 +60,6 @@ variable "sku_tier" {
71
60
72
61
variable"kubernetes_version" {
73
62
description="Specifies the AKS Kubernetes version"
description="(Optional) A map of Kubernetes labels which should be applied to nodes in this Node Pool. Changing this forces a new resource to be created."
169
-
type=list(string)
170
-
default=[]
171
-
}
172
-
173
137
variable"system_node_pool_os_disk_type" {
174
138
description="(Optional) 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."
175
139
type=string
176
140
default="Ephemeral"
177
141
}
178
142
179
-
variable"system_node_pool_max_count" {
180
-
description="(Required) The maximum number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be greater than or equal to min_count."
181
-
type=number
182
-
default=10
183
-
}
184
-
185
-
variable"system_node_pool_min_count" {
186
-
description="(Required) The minimum number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be less than or equal to max_count."
187
-
type=number
188
-
default=3
189
-
}
190
-
191
-
variable"system_node_pool_node_count" {
192
-
description="(Optional) The initial number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be a value in the range min_count - max_count."
193
-
type=number
194
-
default=3
195
-
}
196
-
197
143
variable"log_analytics_workspace_id" {
198
144
description="(Optional) The ID of the Log Analytics Workspace which the OMS Agent should send data to. Must be present if enabled is true."
description="(Optional) Whether to enable auto-scaler. Defaults to false."
24
-
type=bool
25
-
default=false
26
-
}
27
-
28
22
variable"enable_host_encryption" {
29
23
description="(Optional) Should the nodes in this Node Pool have host encryption enabled? Defaults to false."
30
24
type=bool
@@ -67,9 +61,8 @@ variable "tags" {
67
61
}
68
62
69
63
variable"orchestrator_version" {
70
-
description="(Optional) Version of Kubernetes used for the Agents. If not specified, the latest recommended version will be used at provisioning time (but won't auto-upgrade)"
64
+
description="(Required) Version of Kubernetes used for the Agents. If not specified, the latest recommended version will be used at provisioning time (but won't auto-upgrade)"
71
65
type=string
72
-
default=null
73
66
}
74
67
75
68
variable"os_disk_size_gb" {
@@ -114,24 +107,6 @@ variable "pod_subnet_id" {
114
107
default=null
115
108
}
116
109
117
-
variable"max_count" {
118
-
description="(Required) The maximum number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be greater than or equal to min_count."
119
-
type=number
120
-
default=10
121
-
}
122
-
123
-
variable"min_count" {
124
-
description="(Required) The minimum number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be less than or equal to max_count."
125
-
type=number
126
-
default=3
127
-
}
128
-
129
-
variable"node_count" {
130
-
description="(Optional) The initial number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be a value in the range min_count - max_count."
description="(Required) The maximum number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be greater than or equal to min_count."
247
-
type=number
248
-
default=10
249
-
}
250
-
251
-
variable"system_node_pool_min_count" {
252
-
description="(Required) The minimum number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be less than or equal to max_count."
253
-
type=number
254
-
default=3
255
-
}
256
-
257
-
variable"system_node_pool_node_count" {
258
-
description="(Optional) The initial number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be a value in the range min_count - max_count."
259
-
type=number
260
-
default=3
261
-
}
262
-
263
216
variable"user_node_pool_name" {
264
217
description="(Required) Specifies the name of the node pool."
description="(Required) The maximum number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be greater than or equal to min_count."
343
-
type=number
344
-
default=10
345
-
}
346
-
347
-
variable"user_node_pool_min_count" {
348
-
description="(Required) The minimum number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be less than or equal to max_count."
349
-
type=number
350
-
default=3
351
-
}
352
-
353
-
variable"user_node_pool_node_count" {
354
-
description="(Optional) The initial number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be a value in the range min_count - max_count."
355
-
type=number
356
-
default=3
357
-
}
358
-
359
288
variable"storage_account_kind" {
360
289
description="(Optional) Specifies the account kind of the storage account"
0 commit comments