Skip to content

Commit 74d98a9

Browse files
committed
amend missing variable
1 parent 072ee3f commit 74d98a9

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,7 @@ No modules.
435435
| <a name="input_tags"></a> [tags](#input\_tags) | Any tags that should be present on the AKS cluster resources | `map(string)` | `{}` | no |
436436
| <a name="input_temporary_name_for_rotation"></a> [temporary\_name\_for\_rotation](#input\_temporary\_name\_for\_rotation) | (Optional) Specifies the name of the temporary node pool used to cycle the default node pool for VM resizing. the `var.agents_size` is no longer ForceNew and can be resized by specifying `temporary_name_for_rotation` | `string` | `null` | no |
437437
| <a name="input_ultra_ssd_enabled"></a> [ultra\_ssd\_enabled](#input\_ultra\_ssd\_enabled) | (Optional) Used to specify whether the UltraSSD is enabled in the Default Node Pool. Defaults to false. | `bool` | `false` | no |
438+
| <a name="input_upgrade_override"></a> [upgrade\_override](#input\_upgrade\_override) | `force_upgrade_enabled` - (Required) Whether to force upgrade the cluster. Possible values are `true` or `false`.<br/>`effective_until` - (Optional) Specifies the duration, in RFC 3339 format (e.g., `2025-10-01T13:00:00Z`), the upgrade\_override values are effective. This field must be set for the `upgrade_override` values to take effect. The date-time must be within the next 30 days. | <pre>object({<br/> force_upgrade_enabled = bool<br/> effective_until = optional(string)<br/> })</pre> | `null` | no |
438439
| <a name="input_vnet_subnet"></a> [vnet\_subnet](#input\_vnet\_subnet) | object({<br/> id = The ID of a Subnet where the Kubernetes Node Pool should exist. Changing this forces a new resource to be created.<br/>}) | <pre>object({<br/> id = string<br/> })</pre> | `null` | no |
439440
| <a name="input_web_app_routing"></a> [web\_app\_routing](#input\_web\_app\_routing) | object({<br/> dns\_zone\_ids = "(Required) Specifies the list of the DNS Zone IDs in which DNS entries are created for applications deployed to the cluster when Web App Routing is enabled. If not using Bring-Your-Own DNS zones this property should be set to an empty list."<br/>}) | <pre>object({<br/> dns_zone_ids = list(string)<br/> })</pre> | `null` | no |
440441
| <a name="input_workload_autoscaler_profile"></a> [workload\_autoscaler\_profile](#input\_workload\_autoscaler\_profile) | `keda_enabled` - (Optional) Specifies whether KEDA Autoscaler can be used for workloads.<br/>`vertical_pod_autoscaler_enabled` - (Optional) Specifies whether Vertical Pod Autoscaler should be enabled. | <pre>object({<br/> keda_enabled = optional(bool, false)<br/> vertical_pod_autoscaler_enabled = optional(bool, false)<br/> })</pre> | `null` | no |

variables.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1603,3 +1603,15 @@ variable "workload_identity_enabled" {
16031603
default = false
16041604
description = "Enable or Disable Workload Identity. Defaults to false."
16051605
}
1606+
1607+
variable "upgrade_override" {
1608+
type = object({
1609+
force_upgrade_enabled = bool
1610+
effective_until = optional(string)
1611+
})
1612+
default = null
1613+
description = <<-EOT
1614+
`force_upgrade_enabled` - (Required) Whether to force upgrade the cluster. Possible values are `true` or `false`.
1615+
`effective_until` - (Optional) Specifies the duration, in RFC 3339 format (e.g., `2025-10-01T13:00:00Z`), the upgrade_override values are effective. This field must be set for the `upgrade_override` values to take effect. The date-time must be within the next 30 days.
1616+
EOT
1617+
}

0 commit comments

Comments
 (0)