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."
655
655
}
656
656
657
+
variable"maintenance_window_node_os" {
658
+
type=object({
659
+
day_of_month =optional(number)
660
+
day_of_week =optional(string)
661
+
duration =number
662
+
frequency =string
663
+
interval =number
664
+
start_date =optional(string)
665
+
start_time =optional(string)
666
+
utc_offset =optional(string)
667
+
week_index =optional(string)
668
+
not_allowed =optional(set(object({
669
+
end =string
670
+
start =string
671
+
})))
672
+
})
673
+
default=null
674
+
description=<<-EOT
675
+
- `day_of_month` -
676
+
- `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.
677
+
- `duration` - (Required) The duration of the window for maintenance to run in hours.
678
+
- `frequency` - (Required) Frequency of maintenance. Possible options are `Daily`, `Weekly`, `AbsoluteMonthly` and `RelativeMonthly`.
679
+
- `interval` - (Required) The interval for maintenance runs. Depending on the frequency this interval is week or month based.
680
+
- `start_date` - (Optional) The date on which the maintenance window begins to take effect.
681
+
- `start_time` - (Optional) The time for maintenance to begin, based on the timezone determined by `utc_offset`. Format is `HH:mm`.
682
+
- `utc_offset` - (Optional) Used to determine the timezone for cluster maintenance.
683
+
- `week_index` - (Optional) The week in the month used for the maintenance run. Options are `First`, `Second`, `Third`, `Fourth`, and `Last`.
684
+
685
+
---
686
+
`not_allowed` block supports the following:
687
+
- `end` - (Required) The end of a time span, formatted as an RFC3339 string.
688
+
- `start` - (Required) The start of a time span, formatted as an RFC3339 string.
0 commit comments