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 9fa8dbc commit d6ead17
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ $ make docs

| Name | Version |
|------|---------|
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.55.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_archive"></a> [archive](#provider\_archive) | n/a |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.55.0 |
| <a name="provider_null"></a> [null](#provider\_null) | n/a |

## Modules
Expand Down
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 d6ead17

Please sign in to comment.