Skip to content

Commit

Permalink
Do not convert route rules to set
Browse files Browse the repository at this point in the history
  • Loading branch information
juliocc committed Feb 19, 2024
1 parent 81ec6e6 commit 0b9ca3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/net-lb-app-ext/urlmap.tf
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ resource "google_compute_url_map" "default" {
}
}
dynamic "route_rules" {
for_each = toset(coalesce(m.value.route_rules, []))
for_each = coalesce(m.value.route_rules, [])
content {
priority = route_rules.value.priority
service = route_rules.value.service == null ? null : lookup(
Expand Down

0 comments on commit 0b9ca3f

Please sign in to comment.