Skip to content

Commit

Permalink
Add support for AWS provider v3 (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
kjagiello authored Mar 19, 2021
1 parent d3e24f8 commit e7145f8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ should be good to go.
| Name | Version |
|------|---------|
| terraform | >= 0.12 |
| archive | ~> 1.3 |
| aws | ~> 2.70 |
| archive | >= 1.3 |
| aws | >= 2.70, < 4.0 |

## Providers

| Name | Version |
|------|---------|
| archive | ~> 1.3 |
| aws | ~> 2.70 |
| archive | >= 1.3 |
| aws | >= 2.70, < 4.0 |

## Inputs

Expand Down
13 changes: 13 additions & 0 deletions examples/basic/versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
terraform {
required_providers {
archive = {
source = "hashicorp/archive"
version = "~> 2.1"
}
aws = {
source = "hashicorp/aws"
version = "~> 3.33"
}
}
required_version = ">= 0.12"
}
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ terraform {
required_providers {
archive = {
source = "hashicorp/archive"
version = "~> 1.3"
version = ">= 1.3"
}
aws = {
source = "hashicorp/aws"
version = "~> 2.70"
version = ">= 2.70, < 4.0"
}
}
required_version = ">= 0.12"
Expand Down

0 comments on commit e7145f8

Please sign in to comment.