Skip to content

Commit

Permalink
update AWS provider pinning to v3 for TF 0.13 version compat (#47)
Browse files Browse the repository at this point in the history
* update AWS provider pinning to v3 for TF 0.13 version compat

* update as requested

* change

* update as requested

* Updated README.md

Co-authored-by: actions-bot <[email protected]>
  • Loading branch information
jurgenweber and actions-bot authored Sep 3, 2020
1 parent c6c4190 commit 9362e4a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,16 +144,16 @@ Available targets:

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 |
| terraform | >= 0.12.0 |
| aws | >= 2.0 |
| local | ~> 1.2 |
| null | ~> 2.0 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | >= 2.0 |

## Inputs

Expand Down
6 changes: 3 additions & 3 deletions docs/terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 |
| terraform | >= 0.12.0 |
| aws | >= 2.0 |
| local | ~> 1.2 |
| null | ~> 2.0 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | >= 2.0 |

## Inputs

Expand Down
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
terraform {
required_version = ">= 0.12.0, < 0.14.0"
required_version = ">= 0.12.0"

required_providers {
aws = "~> 2.0"
aws = ">= 2.0"
local = "~> 1.2"
null = "~> 2.0"
}
Expand Down

0 comments on commit 9362e4a

Please sign in to comment.