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) Maintenance configuration of the managed cluster."
715
715
}
716
716
717
+
variable"maintenance_window_auto_upgrade" {
718
+
type=object({
719
+
day_of_month =optional(number)
720
+
day_of_week =optional(string)
721
+
duration =number
722
+
frequency =string
723
+
interval =number
724
+
start_date =optional(string)
725
+
start_time =optional(string)
726
+
utc_offset =optional(string)
727
+
week_index =optional(string)
728
+
not_allowed =optional(set(object({
729
+
end =string
730
+
start =string
731
+
})))
732
+
})
733
+
default=null
734
+
description=<<-EOT
735
+
- `day_of_month` - (Optional) The day of the month for the maintenance run. Required in combination with RelativeMonthly frequency. Value between 0 and 31 (inclusive).
736
+
- `day_of_week` - (Optional) The day of the week for the maintenance run. Options are `Monday`, `Tuesday`, `Wednesday`, `Thurday`, `Friday`, `Saturday` and `Sunday`. Required in combination with weekly frequency.
737
+
- `duration` - (Required) The duration of the window for maintenance to run in hours.
738
+
- `frequency` - (Required) Frequency of maintenance. Possible options are `Daily`, `Weekly`, `AbsoluteMonthly` and `RelativeMonthly`.
739
+
- `interval` - (Required) The interval for maintenance runs. Depending on the frequency this interval is week or month based.
740
+
- `start_date` - (Optional) The date on which the maintenance window begins to take effect.
741
+
- `start_time` - (Optional) The time for maintenance to begin, based on the timezone determined by `utc_offset`. Format is `HH:mm`.
742
+
- `utc_offset` - (Optional) Used to determine the timezone for cluster maintenance.
743
+
- `week_index` - (Optional) The week in the month used for the maintenance run. Options are `First`, `Second`, `Third`, `Fourth`, and `Last`.
744
+
745
+
---
746
+
`not_allowed` block supports the following:
747
+
- `end` - (Required) The end of a time span, formatted as an RFC3339 string.
748
+
- `start` - (Required) The start of a time span, formatted as an RFC3339 string.
0 commit comments