Commit 01e71ca1 authored by Matt Gowie's avatar Matt Gowie Committed by GitHub

[AUTOMATED] Update Version Pinning for Terraform to support 0.13 (#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.
parent 19d67799
...@@ -150,7 +150,7 @@ Available targets: ...@@ -150,7 +150,7 @@ Available targets:
| Name | Version | | Name | Version |
|------|---------| |------|---------|
| terraform | ~> 0.12.0 | | terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 | | aws | ~> 2.0 |
| null | ~> 2.0 | | null | ~> 2.0 |
...@@ -299,22 +299,24 @@ Copyright © 2017-2020 [Cloud Posse, LLC](https://cpco.io/copyright) ...@@ -299,22 +299,24 @@ Copyright © 2017-2020 [Cloud Posse, LLC](https://cpco.io/copyright)
See [LICENSE](LICENSE) for full details. See [LICENSE](LICENSE) for full details.
Licensed to the Apache Software Foundation (ASF) under one ```text
or more contributor license agreements. See the NOTICE file Licensed to the Apache Software Foundation (ASF) under one
distributed with this work for additional information or more contributor license agreements. See the NOTICE file
regarding copyright ownership. The ASF licenses this file distributed with this work for additional information
to you under the Apache License, Version 2.0 (the regarding copyright ownership. The ASF licenses this file
"License"); you may not use this file except in compliance to you under the Apache License, Version 2.0 (the
with the License. You may obtain a copy of the License at "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an Unless required by applicable law or agreed to in writing,
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY software distributed under the License is distributed on an
KIND, either express or implied. See the License for the "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
specific language governing permissions and limitations KIND, either express or implied. See the License for the
under the License. specific language governing permissions and limitations
under the License.
```
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
| Name | Version | | Name | Version |
|------|---------| |------|---------|
| terraform | ~> 0.12.0 | | terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 | | aws | ~> 2.0 |
| null | ~> 2.0 | | null | ~> 2.0 |
......
terraform { terraform {
required_version = "~> 0.12.0" required_version = ">= 0.12.0, < 0.14.0"
required_providers { required_providers {
aws = "~> 2.0" aws = "~> 2.0"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment