Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: temporarily remove additional domain names #519

Merged
merged 11 commits into from
Oct 25, 2023
6 changes: 3 additions & 3 deletions aws/load_balancer/certificates.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
#
resource "aws_acm_certificate" "form_viewer" {
# First entry in domain list is the primary domain
domain_name = var.domains[0]
validation_method = "DNS"
subject_alternative_names = length(var.domains) > 1 ? setsubtract(var.domains, [var.domains[0]]) : []
domain_name = var.domains[0]
validation_method = "DNS"
# subject_alternative_names = length(var.domains) > 1 ? setsubtract(var.domains, [var.domains[0]]) : []

lifecycle {
create_before_destroy = true
Expand Down
Loading