-
Notifications
You must be signed in to change notification settings - Fork 0
/
certificate.tf
27 lines (27 loc) · 921 Bytes
/
certificate.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
#### Root domain SSL Certificate
#resource "aws_acm_certificate" "server_api" {
# domain_name = "*.${data.aws_route53_zone.root.name}"
# validation_method = "DNS"
#}
#
#resource "aws_route53_record" "server_api_each" {
# for_each = {
# for dvo in aws_acm_certificate.server_api.domain_validation_options : dvo.domain_name => {
# name = dvo.resource_record_name
# type = dvo.resource_record_type
# record = dvo.resource_record_value
# }
# }
#
# allow_overwrite = true
# name = each.value.name
# records = [each.value.record]
# ttl = 60
# type = each.value.type
# zone_id = data.aws_route53_zone.root.zone_id
#}
#
#resource "aws_acm_certificate_validation" "server_api" {
# certificate_arn = aws_acm_certificate.server_api.arn
# validation_record_fqdns = [for record in aws_route53_record.server_api_each : record.fqdn]
#}