Skip to content

Commit 736408c

Browse files
authored
[AUTOMATED] Update Version Pinning for Terraform to support 0.13 (#64)
## 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 fd435ca commit 736408c

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
@@ -127,7 +127,7 @@ Available targets:
127127

128128
| Name | Version |
129129
|------|---------|
130-
| terraform | ~> 0.12.0 |
130+
| terraform | >= 0.12.0, < 0.14.0 |
131131
| aws | ~> 2.0 |
132132
| null | ~> 2.0 |
133133
| template | ~> 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
| null | ~> 2.0 |
88
| template | ~> 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)