Skip to content

Commit

Permalink
[TF] Add default for GKE maintenance window (#8585)
Browse files Browse the repository at this point in the history
  • Loading branch information
sionescu authored and gedigi committed Aug 2, 2023
1 parent ec55666 commit cecabdc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion terraform/aptos-node/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -250,5 +250,11 @@ variable "gke_maintenance_policy" {
recurrence = string
})
})
default = null
default = {
recurring_window = {
start_time = "2023-06-01T14:00:00Z"
end_time = "2023-06-01T18:00:00Z"
recurrence = "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"
}
}
}

0 comments on commit cecabdc

Please sign in to comment.