forked from azeezsalu/terraform-tutorial-reference-files
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacm reference.tf
More file actions
46 lines (40 loc) · 1.27 KB
/
acm reference.tf
File metadata and controls
46 lines (40 loc) · 1.27 KB
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
# configured aws provider with proper credentials
provider "aws" {
region =
profile =
}
# request public certificates from the amazon certificate manager.
resource "aws_acm_certificate" "acm_certificate" {
domain_name =
subject_alternative_names = []
validation_method =
lifecycle {
create_before_destroy =
}
}
# get details about a route 53 hosted zone
data "aws_route53_zone" "route53_zone" {
name =
private_zone =
}
# create a record set in route 53 for domain validatation
resource "aws_route53_record" "route53_record" {
for_each = {
for dvo in *aws_acm_certificate.acm_certificate*.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 =
}
# validate acm certificates
resource "aws_acm_certificate_validation" "acm_certificate_validation" {
certificate_arn =
validation_record_fqdns = [for record in *aws_route53_record.route53_record* : record.fqdn]
}