Skip to content

Commit

Permalink
feat: update required version of aws provider to allow 3.0 (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
tophercullen authored Aug 13, 2020
1 parent 5f59ef1 commit 18f2065
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ To run the tests:

| Name | Version |
|------|---------|
| terraform | ~> 0.12.6 |
| aws | ~> 2.35 |
| terraform | >= 0.12.6, < 0.14 |
| aws | >= 2.35, < 4.0 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.35 |
| aws | >= 2.35, < 4.0 |

## Inputs

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

required_providers {
aws = "~> 2.35"
aws = ">= 2.35, < 4.0"
}
}

0 comments on commit 18f2065

Please sign in to comment.