mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-12 13:29:04 +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
|
# Request an SSL certificate for the domain
|
||||||
resource "aws_acm_certificate" "my_certificate_request" {
|
resource "aws_acm_certificate" "my_certificate_request" {
|
||||||
domain_name = var.domain_name
|
domain_name = var.domain_name
|
||||||
subject_alternative_names = ["*.{var.domain_name}"]
|
subject_alternative_names = ["*.${var.domain_name}"]
|
||||||
validation_method = "DNS"
|
validation_method = "DNS"
|
||||||
|
|
||||||
tags = {
|
tags = {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue