Skip to content

Commit

Permalink
PLT-875 fixed wrong reference in rules.action_parameters.origin dynam…
Browse files Browse the repository at this point in the history
…ic block
vselcuk committed Jun 4, 2024
1 parent 6a8b542 commit 3d9cec7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
@@ -18,8 +18,8 @@ resource "cloudflare_ruleset" "this" {
dynamic "origin" {
for_each = rules.value.action_parameters.origin[*]
content {
host = from_value.value.host
port = from_value.value.port
host = origin.value.host
port = origin.value.port
}
}

0 comments on commit 3d9cec7

Please sign in to comment.