-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tf
52 lines (42 loc) · 1.24 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
resource "aws_acm_certificate" "this" {
domain_name = var.domain_name
validation_method = "DNS"
subject_alternative_names = var.subject_alternative_names
options {
certificate_transparency_logging_preference = "ENABLED"
}
lifecycle {
create_before_destroy = true
}
tags = var.tags
}
resource "aws_route53_record" "this" {
for_each = var.create_validation_records ? {
for dvo in aws_acm_certificate.this.domain_validation_options : dvo.domain_name => {
name = dvo.resource_record_name
record = dvo.resource_record_value
type = dvo.resource_record_type
}
} : {}
allow_overwrite = true
name = each.value.name
records = [each.value.record]
ttl = var.ttl
type = each.value.type
zone_id = var.r53_zone_id
depends_on = [
aws_acm_certificate.this
]
}
resource "aws_acm_certificate_validation" "this" {
for_each = var.create_validation_records ? toset(["enable"]) : toset([])
certificate_arn = aws_acm_certificate.this.arn
validation_record_fqdns = [for record in aws_route53_record.this : record.fqdn]
timeouts {
create = "60m"
}
depends_on = [
aws_acm_certificate.this,
aws_route53_record.this
]
}