We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d24b91 commit 7763123Copy full SHA for 7763123
modules/dns-firewall/outputs.tf
@@ -15,7 +15,7 @@ output "owner_id" {
15
16
output "fail_open_enabled" {
17
description = "Whether the Route53 Resolver handles queries during failures."
18
- value = aws_route53_resolver_firewall_config.this.firewall_fail_open
+ value = aws_route53_resolver_firewall_config.this.firewall_fail_open == "ENABLED"
19
}
20
21
output "rule_groups" {
@@ -27,7 +27,7 @@ output "rule_groups" {
27
name = rule_group.name
28
priority = priority
29
30
- mutation_protection_enabled = rule_group.mutation_protection
+ mutation_protection_enabled = rule_group.mutation_protection == "ENABLED"
31
32
33
0 commit comments