Commit 3038453c authored by Pam Selle's avatar Pam Selle Committed by GitHub

chore: Allow Terraform 0.13 (#36)

parent de857803
......@@ -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
......@@ -84,7 +84,7 @@ module "s3_bucket" {
| Name | Version |
|------|---------|
| terraform | ~> 0.12.6 |
| terraform | >= 0.12.6, < 0.14 |
| aws | ~> 2.35 |
## Providers
......
terraform {
required_version = "~> 0.12.6"
required_version = ">= 0.12.6, < 0.14"
required_providers {
aws = "~> 2.35"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment