Routing & TLS issues fixed with ACM

This commit is contained in:
shockrah 2023-01-02 19:10:08 -08:00
parent bdeb59e46d
commit bc096af870

View File

@ -36,6 +36,11 @@ locals {
name = tolist(aws_acm_certificate.sample.domain_validation_options)[0].resource_record_name
type = tolist(aws_acm_certificate.sample.domain_validation_options)[0].resource_record_type
records = [ tolist(aws_acm_certificate.sample.domain_validation_options)[0].resource_record_value ]
},
{
name = "sample.project-athens.xyz"
type = "CNAME"
records = [ aws_lb.alpha.dns_name ]
}
]
}