Skip to content

Commit

Permalink
fix(versions): avoid deprecated resolve_conflicts warning by restrict…
Browse files Browse the repository at this point in the history
…ing AWS provider version to <5.0

Since we don't want to bump the AWS provider version we're using, let's add a constraint the other way to avoid the warning.

ref: terraform-aws-modules#2680
  • Loading branch information
TPXP authored Jul 21, 2023
1 parent 0a17f65 commit 8eab83d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 4.47"
version = ">= 4.47, < 5.0"
}
tls = {
source = "hashicorp/tls"
Expand Down

0 comments on commit 8eab83d

Please sign in to comment.