docs: Correct time_zone argument on example autoscaling group schedule (#2722)

This commit is contained in:
lfpalacios
2023-08-15 17:26:25 -03:00
committed by GitHub
parent 666603b6e5
commit 771465be28

View File

@@ -271,7 +271,7 @@ module "eks" {
desired_size = 2
start_time = "2023-03-05T00:00:00Z"
end_time = "2024-03-05T00:00:00Z"
timezone = "Etc/GMT+0"
time_zone = "Etc/GMT+0"
recurrence = "0 0 * * *"
},
scale-down = {
@@ -280,7 +280,7 @@ module "eks" {
desired_size = 0
start_time = "2023-03-05T12:00:00Z"
end_time = "2024-03-05T12:00:00Z"
timezone = "Etc/GMT+0"
time_zone = "Etc/GMT+0"
recurrence = "0 12 * * *"
}
}