Created
February 5, 2022 17:46
-
-
Save davidvpe/fab9d1ecd677bfc559adfa752a1e6835 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "aws_acm_certificate_validation" "validation" { | |
certificate_arn = aws_acm_certificate.certificate.arn | |
validation_record_fqdns = [for record in cloudflare_record.records : record.hostname] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment