Skip to content

Commit

Permalink
Update versions.tf to support tf .14 (#105)
Browse files Browse the repository at this point in the history
* Update versions.tf

Adds support for Terraform `0..14` (currently in `beta2`)

* update readme, docs, example versions.tf

* remove versions ceiling
  • Loading branch information
kiddom-kq authored Nov 10, 2020
1 parent b3a0a44 commit 0489417
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ Available targets:

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| terraform | >= 0.12.0 |

## Providers

Expand Down
2 changes: 1 addition & 1 deletion docs/terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| terraform | >= 0.12.0 |

## Providers

Expand Down
2 changes: 1 addition & 1 deletion examples/complete/versions.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
terraform {
required_version = ">= 0.12.0, < 0.14.0"
required_version = ">= 0.12.0"
}
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
terraform {
required_version = ">= 0.12.0, < 0.14.0"
required_version = ">= 0.12.0"
}

0 comments on commit 0489417

Please sign in to comment.