Skip to content

Commit 38908e8

Browse files
authored
[AUTOMATED] Update Version Pinning for Terraform to support 0.13 (#40)
## 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 3bf93fc commit 38908e8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ Available targets:
175175
176176
| Name | Version |
177177
|------|---------|
178-
| terraform | ~> 0.12.0 |
178+
| terraform | >= 0.12.0, < 0.14.0 |
179179
| aws | ~> 2.0 |
180180
| local | ~> 1.2 |
181181
| null | ~> 2.0 |

docs/terraform.md

+1-1
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

+1-1
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)