-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathacm_rules_vm.tf
56 lines (45 loc) · 1.92 KB
/
acm_rules_vm.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
53
54
55
56
# ------------------------------------------------------------------------------
# Create an ACM certificate for rules.vm.cyber.dhs.gov.
# ------------------------------------------------------------------------------
resource "aws_acm_certificate" "rules" {
provider = aws.acmresourcechange
domain_name = "rules.vm.cyber.dhs.gov"
# Include the legacy subdomain as a SAN so that requests to it are also
# covered by the certificate.
subject_alternative_names = ["rules.ncats.cyber.dhs.gov"]
validation_method = "DNS"
lifecycle {
create_before_destroy = true
}
options {
certificate_transparency_logging_preference = "ENABLED"
}
}
# ------------------------------------------------------------------------------
# Create public DNS records containing validation information for the
# ACM certificate created above.
# ------------------------------------------------------------------------------
resource "aws_route53_record" "rules_certificate_validation" {
provider = aws.route53resourcechange
for_each = {
for dvo in aws_acm_certificate.rules.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 = aws_route53_zone.cyber_dhs_gov.zone_id
}
# ------------------------------------------------------------------------------
# Validate the ACM certificate created above.
# ------------------------------------------------------------------------------
resource "aws_acm_certificate_validation" "rules" {
provider = aws.acmresourcechange
certificate_arn = aws_acm_certificate.rules.arn
validation_record_fqdns = [for record in aws_route53_record.rules_certificate_validation : record.fqdn]
}