Skip to content

Commit

Permalink
[AUTOMATED] Update Version Pinning for Terraform to support 0.13 (clo…
Browse files Browse the repository at this point in the history
…udposse#69)

## 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.
  • Loading branch information
Gowiem committed Aug 12, 2020
1 parent a84a3bd commit a64bf7d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ Available targets:

| Name | Version |
|------|---------|
| terraform | ~> 0.12.0 |
| terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 |
| kubernetes | ~> 1.11 |
| local | ~> 1.3 |
Expand Down
2 changes: 1 addition & 1 deletion docs/terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

| Name | Version |
|------|---------|
| terraform | ~> 0.12.0 |
| terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 |
| kubernetes | ~> 1.11 |
| local | ~> 1.3 |
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = "~> 0.12.0"
required_version = ">= 0.12.0, < 0.14.0"

required_providers {
aws = "~> 2.0"
Expand Down

0 comments on commit a64bf7d

Please sign in to comment.