Skip to content

Commit

Permalink
fix: bump AWS version in examples
Browse files Browse the repository at this point in the history
The new version of the ASG module requires a newer version of the AWS provider.
  • Loading branch information
adamconnelly committed Nov 20, 2024
1 parent b44c3b0 commit ef47849
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/amd64/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "<5.0"
version = "< 6.0"
}

random = { source = "hashicorp/random" }
Expand Down
2 changes: 1 addition & 1 deletion examples/arm64/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "<5.0"
version = "< 6.0"
}

random = { source = "hashicorp/random" }
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-iam-role/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "<5.0"
version = "< 6.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5.0"
version = ">= 5.55.0"
}
}
}

0 comments on commit ef47849

Please sign in to comment.