Skip to content

Commit

Permalink
fix missing equals
Browse files Browse the repository at this point in the history
  • Loading branch information
skyfox675 committed May 2, 2021
1 parent df4725d commit 27daa81
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 @@ -68,7 +68,7 @@ resource "aws_route53_record" "caa_this" {
}

resource "aws_route53_record" "outlook_autodiscover_this" {
count = var.outlook_autodiscover = true ? 1 : 0
count = var.outlook_autodiscover == true ? 1 : 0
zone_id = aws_route53_zone.this.zone_id
name = "autodiscover.${aws_route53_zone.this.name}"
type = "CNAME"
Expand Down

0 comments on commit 27daa81

Please sign in to comment.