forked from jpamies/terraform-aws-certificate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
35 lines (32 loc) · 1.26 KB
/
main.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
######
# AWS certificate
######
resource "aws_acm_certificate" "this" {
domain_name = var.domain_name
validation_method = "DNS"
subject_alternative_names = var.subject_alternative_names
tags = var.tags
}
resource "aws_acm_certificate_validation" "this" {
depends_on = [aws_acm_certificate.this]
certificate_arn = aws_acm_certificate.this.arn
validation_record_fqdns = aws_route53_record.cert_validation.*.fqdn
}
######
# Route53
# Records to validate the certificate
######
##
# Due being unable to perform a function call length on a computed value
# count = "${length(aws_acm_certificate.this.domain_validation_options)}"
# We're using the list of the SAN + the main domain as a workaround
# count = "${length(var.subject_alternative_names)+1}"
resource "aws_route53_record" "cert_validation" {
count = length(var.subject_alternative_names) + 1
name = aws_acm_certificate.this.domain_validation_options[count.index]["resource_record_name"]
type = "CNAME"
allow_overwrite = true
zone_id = var.dns_zone_id
records = [aws_acm_certificate.this.domain_validation_options[count.index]["resource_record_value"]]
ttl = var.dns_ttl
}