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.
2 parents 921a28f + a7b95ce commit 3cbc49aCopy full SHA for 3cbc49a
main.tf
@@ -12,8 +12,8 @@ resource "aws_route53_record" "this" {
12
name = aws_acm_certificate.this.domain_validation_options[count.index]["resource_record_name"]
13
type = aws_acm_certificate.this.domain_validation_options[count.index]["resource_record_type"]
14
zone_id = element(var.zone_ids, count.index)
15
- records = aws_acm_certificate.this.domain_validation_options[count.index]["resource_record_value"]
16
- ttl = 60
+ records = [aws_acm_certificate.this.domain_validation_options[count.index]["resource_record_value"]]
+ ttl = 60
17
}
18
19
resource "aws_acm_certificate_validation" "this" {
0 commit comments