File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -67,9 +67,9 @@ resource "aws_route53_record" "default" {
67
67
zone_id = join (" " , data. aws_route53_zone . default . * . zone_id )
68
68
ttl = var. ttl
69
69
allow_overwrite = true
70
- name = aws_acm_certificate. cert [0 ]. domain_validation_options . 0 . resource_record_name
71
- type = aws_acm_certificate. cert [0 ]. domain_validation_options . 0 . resource_record_type
72
- records = [aws_acm_certificate . cert [0 ]. domain_validation_options . 0 . resource_record_value ]
70
+ name = join ( " " , aws_acm_certificate. cert [0 ]. domain_validation_options . * . resource_record_name )
71
+ type = join ( " " , aws_acm_certificate. cert [0 ]. domain_validation_options . * . resource_record_type )
72
+ records = [join ( " " , aws_acm_certificate. cert [0 ]. domain_validation_options . * . resource_record_value ) ]
73
73
}
74
74
75
75
# Module : ACM CERTIFICATE VALIDATION
You can’t perform that action at this time.
0 commit comments