Skip to content

Commit

Permalink
bug squash
Browse files Browse the repository at this point in the history
  • Loading branch information
skyfox675 committed Sep 7, 2021
1 parent 9f761c4 commit f1113be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ resource "aws_route53_record" "stripe_domainkey6_this" {
records = ["${var.stripe_domainkey6}.dkim.custom-email-domain.stripe.com."]
}
resource "aws_route53_record" "stripe_bounce_this" {
count = length(var.stripe_bounce) == true ? 1 : 0
count = var.stripe_bounce == true ? 1 : 0
zone_id = aws_route53_zone.this.zone_id
name = "bounce.${aws_route53_zone.this.name}"
type = "CNAME"
Expand Down

0 comments on commit f1113be

Please sign in to comment.