Skip to content

Commit 7763123

Browse files
committed
Fix output to boolean for dns-firwall module
1 parent 8d24b91 commit 7763123

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/dns-firewall/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ output "owner_id" {
1515

1616
output "fail_open_enabled" {
1717
description = "Whether the Route53 Resolver handles queries during failures."
18-
value = aws_route53_resolver_firewall_config.this.firewall_fail_open
18+
value = aws_route53_resolver_firewall_config.this.firewall_fail_open == "ENABLED"
1919
}
2020

2121
output "rule_groups" {
@@ -27,7 +27,7 @@ output "rule_groups" {
2727
name = rule_group.name
2828
priority = priority
2929

30-
mutation_protection_enabled = rule_group.mutation_protection
30+
mutation_protection_enabled = rule_group.mutation_protection == "ENABLED"
3131
}
3232
}
3333
}

0 commit comments

Comments
 (0)