Skip to content

Commit

Permalink
Merge pull request #415 from aztfmod/bug_fix_414
Browse files Browse the repository at this point in the history
DNS proxy_enabled not processed in Azure firewall policy
  • Loading branch information
arnaudlh authored Apr 30, 2021
2 parents 97ee9f0 + c26b936 commit b11373a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/networking/firewall_policies/firewall_policy.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resource "azurerm_firewall_policy" "fwpol" {

content {
servers = try(dns.value.servers, null)
proxy_enabled = try(dns.values.proxy_enabled, false)
proxy_enabled = try(dns.value.proxy_enabled, false)
}
}

Expand Down

0 comments on commit b11373a

Please sign in to comment.