Skip to content

Commit 6866a42

Browse files
authored
[AUTOMATED] Update Version Pinning for Terraform to support 0.13 (#55)
## What 1. Update Version Pinning for Terraform to support 0.13 ## Why 1. This is a relatively minor update that the CloudPosse module already likely supports. 1. This allows module consumers to not individually update our Terraform module to support Terraform 0.13.
1 parent 45c48b0 commit 6866a42

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Available targets:
195195

196196
| Name | Version |
197197
|------|---------|
198-
| terraform | ~> 0.12.0 |
198+
| terraform | >= 0.12.0, < 0.14.0 |
199199
| aws | ~> 2.0 |
200200
| local | ~> 1.2 |
201201
| null | ~> 2.0 |

docs/terraform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
| Name | Version |
44
|------|---------|
5-
| terraform | ~> 0.12.0 |
5+
| terraform | >= 0.12.0, < 0.14.0 |
66
| aws | ~> 2.0 |
77
| local | ~> 1.2 |
88
| null | ~> 2.0 |

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = "~> 0.12.0"
2+
required_version = ">= 0.12.0, < 0.14.0"
33

44
required_providers {
55
aws = "~> 2.0"

0 commit comments

Comments
 (0)