Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
jordi.bru committed May 23, 2024
1 parent dad9358 commit c0292c7
Showing 3 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
@@ -6,6 +6,8 @@ resource "aws_acm_certificate" "domain_certificate" {
create_before_destroy = true
}

provider = aws.us-east-1-acm

tags = {
terraform = true
stage = var.stage
@@ -35,4 +37,6 @@ resource "aws_acm_certificate_validation" "validations" {
count = var.validate_cert ? 1 : 0
certificate_arn = aws_acm_certificate.domain_certificate.arn
validation_record_fqdns = [for record in aws_route53_record.cert_validations : record.fqdn]

provider = aws.us-east-1-acm
}
File renamed without changes.
4 changes: 4 additions & 0 deletions providers.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
provider "aws" {
alias = "us-east-1-acm"
region = "us-east-1"
}

0 comments on commit c0292c7

Please sign in to comment.