Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

chore: Allow 0.13 #36

Merged
merged 5 commits into from
Jul 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ These features of S3 bucket configurations are supported:

## Terraform versions

Only Terraform 0.12 is supported.
Terraform 0.12 and above are supported.

## Usage

Expand Down Expand Up @@ -84,7 +84,7 @@ module "s3_bucket" {

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

## Providers
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = "~> 0.12.6"
required_version = ">= 0.12.6, < 0.14"

required_providers {
aws = "~> 2.35"
Expand Down