diff --git a/main.tf b/main.tf
index ddb78551368ea3413d30e8081a616062a3bb7c5e..82293de463133159adb629dacef42d52db3c9889 100644
--- a/main.tf
+++ b/main.tf
@@ -78,9 +78,9 @@ resource "google_container_cluster" "cluster" {
   # Stop Google from upgrading cluster nodes during the work week
   maintenance_policy {
     recurring_window {
-      recurrence = "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR,SA,SU"
-      end_time   = "2020-01-28T08:00:00Z"
-      start_time = "2020-01-28T04:00:00Z"
+      recurrence = "FREQ=DAILY"
+      end_time   = "2019-01-01T06:00:00Z"
+      start_time = "2019-01-01T02:00:00Z"
     }
   }
 }