Skip to content

2.4.1

Compare
Choose a tag to compare
@lgothelipe lgothelipe released this 09 Jun 05:47
· 6 commits to master since this release
91b7744

What's Changed

  • Require provider us-east-1 to cloudwatch alarms by @lgothelipe in #15

New Contributors

Full Changelog: 2.4.0...2.4.1

Breaking changes

Provider us-east-1 required.

provider "aws" {
  region = "us-east-1"
  alias  = "us-east-1"
}

module "frontend_app" {
  source   = "git::https://github.com/DNXLabs/terraform-aws-static-app.git?ref=2.4.1"
  
  providers = {
    aws.us-east-1 = aws.us-east-1
  }
}