mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
Merge pull request #42 from Hestia-Homes/main
fixed variable domain name
This commit is contained in:
commit
6a6fa39eb7
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ resource "aws_route53_zone" "my_hosted_zone" {
|
|||
# Request an SSL certificate for the domain
|
||||
resource "aws_acm_certificate" "my_certificate_request" {
|
||||
domain_name = var.domain_name
|
||||
subject_alternative_names = ["*.{var.domain_name}"]
|
||||
subject_alternative_names = ["*.${var.domain_name}"]
|
||||
validation_method = "DNS"
|
||||
|
||||
tags = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue