Skip to content

Commit 3158364

Browse files
fix condition
1 parent b4ae88e commit 3158364

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/terraform/modules/route53-subdomain/aws_route53.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ resource "aws_route53_record" "wildcard_record_v4" {
2323
}
2424

2525
resource "aws_route53_record" "wildcard_record_v6" {
26-
count = length(var.wildcard_records_v4) == 0 ? 0 : 1
26+
count = length(var.wildcard_records_v6) == 0 ? 0 : 1
2727

2828
zone_id = aws_route53_zone.subdomain.id
2929
name = "*.${var.subdomain}"

0 commit comments

Comments
 (0)