Skip to content

Commit

Permalink
Update CMS SSL certificate provider and zone id (#656)
Browse files Browse the repository at this point in the history
  • Loading branch information
kin0992 authored Feb 15, 2024
1 parent 319fd41 commit bd8b672
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .infrastructure/11_certs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ module "cms_ssl_certificate" {
source = "git::https://github.com/terraform-aws-modules/terraform-aws-acm.git?ref=8d0b22f1f242a1b36e29b8cb38aaeac9b887500d" # v5.0.0

domain_name = keys(var.dns_domain_name_cms)[0]
zone_id = module.dns_zone_cms.route53_zone_zone_id[keys(var.dns_domain_name_cms)[0]]
zone_id = aws_route53_zone.dev_portal.id

providers = {
aws = aws.us-east-1
}

subject_alternative_names = [
"www.${keys(var.dns_domain_name_cms)[0]}"
Expand Down

0 comments on commit bd8b672

Please sign in to comment.