Skip to content

Commit 4272406

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

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
@@ -100,7 +100,7 @@ Available targets:
100100

101101
| Name | Version |
102102
|------|---------|
103-
| terraform | ~> 0.12.0 |
103+
| terraform | >= 0.12.0, < 0.14.0 |
104104
| aws | ~> 2.0 |
105105
| local | ~> 1.3 |
106106
| null | ~> 2.1 |

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.3 |
88
| null | ~> 2.1 |

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)