terraform-aws-ecs-web-app
terraform-aws-ecs-web-app copied to clipboard
Add AWS Provider v5 Support
trafficstars
Describe the Bug
Update the version to allow for an AWS provider version of v5. It seems the dependency that was holding it back has been resolved.
Expected Behavior
A terraform init will allow me to use an AWS provider version of v5.
Steps to Reproduce
terraform init with a providers.tf containing:
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
}
}
Screenshots
No response
Environment
No response
Additional Context
No response
The latest version of the ECS module requires AWS provider v5 due to the ec2 autoscaling module requiring >= 5.16 .
https://github.com/cloudposse/terraform-aws-ecs-web-app/pull/258