Skip to content

Commit

Permalink
Merge pull request #8 from Flaconi/PLT-875
Browse files Browse the repository at this point in the history
PLT-875 fixed wrong reference in rules.action_parameters.origin dynam…
  • Loading branch information
vselcuk authored Jun 4, 2024
2 parents 7aed7e9 + 99aecbe commit e32643a
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
Expand Up @@ -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
}
}

Expand Down

0 comments on commit e32643a

Please sign in to comment.