Skip to content

Commit

Permalink
Remove version pin for aws provider (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelhar authored Sep 27, 2023
1 parent 3d4f972 commit e3c79e0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions modules/infra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.4.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | < 5.17 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 5 |
| <a name="requirement_local"></a> [local](#requirement\_local) | >= 2.2.0 |
| <a name="requirement_time"></a> [time](#requirement\_time) | >= 0.9.1 |
| <a name="requirement_tls"></a> [tls](#requirement\_tls) | >= 3.4.0 |
Expand All @@ -15,7 +15,7 @@

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | < 5.17 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | ~> 5 |
| <a name="provider_time"></a> [time](#provider\_time) | >= 0.9.1 |
| <a name="provider_tls"></a> [tls](#provider\_tls) | >= 3.4.0 |

Expand Down
4 changes: 2 additions & 2 deletions modules/infra/submodules/storage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | < 5.17 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 5 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | < 5.17 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | ~> 5 |

## Modules

Expand Down
2 changes: 1 addition & 1 deletion modules/infra/submodules/storage/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "< 5.17"
version = "~> 5"
}
}
}
2 changes: 1 addition & 1 deletion modules/infra/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "< 5.17"
version = "~> 5"
}
local = {
source = "hashicorp/local"
Expand Down

0 comments on commit e3c79e0

Please sign in to comment.