mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
Increase timeouts for rolling deploys
This commit is contained in:
@@ -342,6 +342,12 @@ resource "google_compute_region_instance_group_manager" "application" {
|
||||
max_surge_fixed = max(1, var.scaling_horizontal_replicas - 1)
|
||||
}
|
||||
|
||||
timeouts {
|
||||
create = "20m"
|
||||
update = "30m"
|
||||
delete = "20m"
|
||||
}
|
||||
|
||||
depends_on = [
|
||||
google_compute_instance_template.application
|
||||
]
|
||||
|
||||
@@ -335,6 +335,12 @@ resource "google_compute_region_instance_group_manager" "application" {
|
||||
max_surge_fixed = max(length(each.value.zones), each.value.replicas - 1)
|
||||
}
|
||||
|
||||
timeouts {
|
||||
create = "20m"
|
||||
update = "30m"
|
||||
delete = "20m"
|
||||
}
|
||||
|
||||
depends_on = [
|
||||
google_compute_instance_template.application
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user