We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2d3e5b commit 8cefc8bCopy full SHA for 8cefc8b
main.tf
@@ -19,5 +19,5 @@ resource "aws_acm_certificate_validation" "this" {
19
provider = "aws"
20
count = "${length(var.zone_ids)}"
21
certificate_arn = "${aws_acm_certificate.this.arn}"
22
- validation_record_fqdns = ["${aws_route53_record.this.*.fqdn}"]
+ validation_record_fqdns = ["${element(aws_route53_record.this.*.fqdn, count.index)}"]
23
}
0 commit comments