Skip to content

Commit 01e71ca

Browse files
authored
[AUTOMATED] Update Version Pinning for Terraform to support 0.13 (cloudposse#74)
## 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 19d6779 commit 01e71ca

File tree

3 files changed

+21
-19
lines changed

3 files changed

+21
-19
lines changed

README.md

+19-17
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Available targets:
150150

151151
| Name | Version |
152152
|------|---------|
153-
| terraform | ~> 0.12.0 |
153+
| terraform | >= 0.12.0, < 0.14.0 |
154154
| aws | ~> 2.0 |
155155
| null | ~> 2.0 |
156156

@@ -299,22 +299,24 @@ Copyright © 2017-2020 [Cloud Posse, LLC](https://cpco.io/copyright)
299299

300300
See [LICENSE](LICENSE) for full details.
301301

302-
Licensed to the Apache Software Foundation (ASF) under one
303-
or more contributor license agreements. See the NOTICE file
304-
distributed with this work for additional information
305-
regarding copyright ownership. The ASF licenses this file
306-
to you under the Apache License, Version 2.0 (the
307-
"License"); you may not use this file except in compliance
308-
with the License. You may obtain a copy of the License at
309-
310-
https://www.apache.org/licenses/LICENSE-2.0
311-
312-
Unless required by applicable law or agreed to in writing,
313-
software distributed under the License is distributed on an
314-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
315-
KIND, either express or implied. See the License for the
316-
specific language governing permissions and limitations
317-
under the License.
302+
```text
303+
Licensed to the Apache Software Foundation (ASF) under one
304+
or more contributor license agreements. See the NOTICE file
305+
distributed with this work for additional information
306+
regarding copyright ownership. The ASF licenses this file
307+
to you under the Apache License, Version 2.0 (the
308+
"License"); you may not use this file except in compliance
309+
with the License. You may obtain a copy of the License at
310+
311+
https://www.apache.org/licenses/LICENSE-2.0
312+
313+
Unless required by applicable law or agreed to in writing,
314+
software distributed under the License is distributed on an
315+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
316+
KIND, either express or implied. See the License for the
317+
specific language governing permissions and limitations
318+
under the License.
319+
```
318320

319321

320322

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
| null | ~> 2.0 |
88

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)