Skip to content

Commit 2550397

Browse files
authored
[AUTOMATED] Update Version Pinning for Terraform to support 0.13 (#22)
## 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 052c59c commit 2550397

File tree

3 files changed

+21
-19
lines changed

3 files changed

+21
-19
lines changed

README.md

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ Available targets:
176176

177177
| Name | Version |
178178
|------|---------|
179-
| terraform | ~> 0.12.0 |
179+
| terraform | >= 0.12.0, < 0.14.0 |
180180
| aws | ~> 2.0 |
181181
| local | ~> 1.3 |
182182
| template | ~> 2.0 |
@@ -337,22 +337,24 @@ Copyright © 2017-2020 [Cloud Posse, LLC](https://cpco.io/copyright)
337337

338338
See [LICENSE](LICENSE) for full details.
339339

340-
Licensed to the Apache Software Foundation (ASF) under one
341-
or more contributor license agreements. See the NOTICE file
342-
distributed with this work for additional information
343-
regarding copyright ownership. The ASF licenses this file
344-
to you under the Apache License, Version 2.0 (the
345-
"License"); you may not use this file except in compliance
346-
with the License. You may obtain a copy of the License at
347-
348-
https://www.apache.org/licenses/LICENSE-2.0
349-
350-
Unless required by applicable law or agreed to in writing,
351-
software distributed under the License is distributed on an
352-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
353-
KIND, either express or implied. See the License for the
354-
specific language governing permissions and limitations
355-
under the License.
340+
```text
341+
Licensed to the Apache Software Foundation (ASF) under one
342+
or more contributor license agreements. See the NOTICE file
343+
distributed with this work for additional information
344+
regarding copyright ownership. The ASF licenses this file
345+
to you under the Apache License, Version 2.0 (the
346+
"License"); you may not use this file except in compliance
347+
with the License. You may obtain a copy of the License at
348+
349+
https://www.apache.org/licenses/LICENSE-2.0
350+
351+
Unless required by applicable law or agreed to in writing,
352+
software distributed under the License is distributed on an
353+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
354+
KIND, either express or implied. See the License for the
355+
specific language governing permissions and limitations
356+
under the License.
357+
```
356358

357359

358360

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
| local | ~> 1.3 |
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)