Skip to content

Commit

Permalink
feat: Support AWS provider 3.0 and Terraform 0.13 (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
zachwhaley authored Aug 13, 2020
1 parent d4c7801 commit 1ab2064
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Not supported (yet):

## Terraform versions

Terraform 0.12. Pin module version to `~> v5.0`. Submit pull-requests to `master` branch.
Terraform 0.12 and newer. Pin module version to `~> v5.0`. Submit pull-requests to `master` branch.

Terraform 0.11. Pin module version to `~> v3.0`. Submit pull-requests to `terraform011` branch.

Expand Down Expand Up @@ -220,14 +220,14 @@ module "lb" {

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

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.54 |
| aws | >= 2.54, < 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"
required_version = ">= 0.12.6, < 0.14"

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

0 comments on commit 1ab2064

Please sign in to comment.