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" {
6767 zone_id = join (" " , data. aws_route53_zone . default . * . zone_id )
6868 ttl = var. ttl
6969 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 ) ]
7373}
7474
7575# Module : ACM CERTIFICATE VALIDATION
You can’t perform that action at this time.
0 commit comments