Skip to content

Commit a9e0f10

Browse files
authored
[AUTOMATED] Update Version Pinning for Terraform to support 0.13 (#129)
## 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 7f7491a commit a9e0f10

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
@@ -179,7 +179,7 @@ Available targets:
179179

180180
| Name | Version |
181181
|------|---------|
182-
| terraform | ~> 0.12.0 |
182+
| terraform | >= 0.12.0, < 0.14.0 |
183183
| aws | ~> 2.0 |
184184
| null | ~> 2.0 |
185185

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
| null | ~> 2.0 |
88

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)