Skip to content

Commit 191f21e

Browse files
authored
fix(google_fastly_waf): The priority of a snippet can't be a string. (#332)
1 parent 4caf650 commit 191f21e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google_fastly_waf/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ resource "fastly_service_vcl" "default" {
8989
content = snippet.value.content
9090
name = snippet.value.name
9191
type = snippet.value.type
92-
priority = lookup(snippet.value, "priority", "")
92+
priority = lookup(snippet.value, "priority", null)
9393
}
9494
}
9595

0 commit comments

Comments
 (0)