Skip to content

Commit

Permalink
Workaround until the upstream provider is fixed. terraform-google-mod…
Browse files Browse the repository at this point in the history
…ules/terraform-google-vm#406

No functional change: leaving most_disruptive_allowed_action blank by default should be equivalent to "REPLACE"
  • Loading branch information
eeaton committed May 23, 2024
1 parent 20da382 commit bba21b8
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions 3-networks-hub-and-spoke/modules/transitivity/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,16 @@ module "migs" {
instance_template = module.templates[each.key].self_link
update_policy = [
{
max_surge_fixed = 4
max_surge_percent = null
instance_redistribution_type = "NONE"
max_unavailable_fixed = 4
max_unavailable_percent = null
min_ready_sec = 180
minimal_action = "RESTART"
type = "OPPORTUNISTIC"
replacement_method = "SUBSTITUTE"
max_surge_fixed = 4
max_surge_percent = null
instance_redistribution_type = "NONE"
max_unavailable_fixed = 4
max_unavailable_percent = null
min_ready_sec = 180
minimal_action = "RESTART"
type = "OPPORTUNISTIC"
replacement_method = "SUBSTITUTE"
most_disruptive_allowed_action = "REPLACE"
}
]
}
Expand Down

0 comments on commit bba21b8

Please sign in to comment.