-
Notifications
You must be signed in to change notification settings - Fork 3
/
acm.tf
42 lines (36 loc) · 1.3 KB
/
acm.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
output "acm_arn" {
description = "arn of the acm"
value = var.enable_waf == true && var.acm_arn == "" ? aws_acm_certificate_validation.alb[0].certificate_arn : var.acm_arn
}
resource "aws_acm_certificate" "alb" {
count = var.enable_waf == true && var.acm_arn == "" ? 1 : 0
domain_name = local.dns_name
validation_method = "DNS"
depends_on = [
aws_route53_record.ipa-app-caa
]
}
resource "aws_route53_record" "alb" {
for_each = var.enable_waf && var.acm_arn == "" ? {
for dvo in aws_acm_certificate.alb[0].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 = 60
type = each.value.type
zone_id = data.aws_route53_zone.primary[0].zone_id
provider = aws.dns-control
}
resource "aws_acm_certificate_validation" "alb" {
count = var.enable_waf == true && var.acm_arn == "" ? 1 : 0
certificate_arn = aws_acm_certificate.alb[0].arn
validation_record_fqdns = [for record in aws_route53_record.alb : record.fqdn]
depends_on = [
aws_acm_certificate.alb[0]
]
}