Skip to content

Commit

Permalink
fix: Eliminate deprecation warning due to pre-0.12 string interpolati…
Browse files Browse the repository at this point in the history
…on syntax (#249)
  • Loading branch information
tpdownes authored Feb 18, 2021
1 parent 27027c0 commit 1d833dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/firewall-rules/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

resource "google_compute_firewall" "rules" {
for_each = { for r in var.rules : "${r.name}" => r }
for_each = { for r in var.rules : r.name => r }
name = each.value.name
description = each.value.description
direction = each.value.direction
Expand Down

0 comments on commit 1d833dc

Please sign in to comment.