File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ resource "aws_acm_certificate" "cloudfront_cert" {
7
7
8
8
resource "aws_acm_certificate_validation" "cert_validation" {
9
9
certificate_arn = aws_acm_certificate. cloudfront_cert . arn
10
- validation_record_fqdns = [for record in data . aws_route53_zone . hosted_zone : record . fqdn ]
10
+ validation_record_fqdns = [for record in aws_route53_zone . hosted_zone : record . fqdn ]
11
11
}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ resource "aws_route53_record" "acm_records" {
16
16
records = [each . value . record ]
17
17
ttl = 60
18
18
type = each. value . type
19
- zone_id = data . aws_route53_zone . hosted_zone . zone_id
19
+ zone_id = aws_route53_zone. hosted_zone . zone_id
20
20
}
21
21
22
22
# ############################################
You can’t perform that action at this time.
0 commit comments