Increase minimum terraform version to include yamlencode (#570)

* Increase minimum terraform version to include yamlencode

https://github.com/hashicorp/terraform/blob/master/CHANGELOG.md#0122-june-12-2019

* Update Changelog
This commit is contained in:
Arnaud Venturi
2019-10-25 09:14:01 +00:00
committed by Thierno IB. BARRY
parent 3f346d1610
commit c90b33780c
4 changed files with 4 additions and 3 deletions

View File

@@ -18,6 +18,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
- **Breaking:** The `kubectl` configuration file can now be fully-specified using `config_output_path`. Previously it was assumed that `config_output_path` referred to a directory and always ended with a forward slash. This is a breaking change if `config_output_path` does **not** end with a forward slash (which was advised against by the documentation). - **Breaking:** The `kubectl` configuration file can now be fully-specified using `config_output_path`. Previously it was assumed that `config_output_path` referred to a directory and always ended with a forward slash. This is a breaking change if `config_output_path` does **not** end with a forward slash (which was advised against by the documentation).
- Changed logic for setting default ebs_optimized to only require maintaining a list of instance types that don't support it (by @jeffmhastings) - Changed logic for setting default ebs_optimized to only require maintaining a list of instance types that don't support it (by @jeffmhastings)
- Bumped minimum terraform version to 0.12.2 to prevent an error on yamlencode function (by @toadjaune)
# History # History

View File

@@ -1,5 +1,5 @@
terraform { terraform {
required_version = ">= 0.12.0" required_version = ">= 0.12.2"
} }
provider "aws" { provider "aws" {

View File

@@ -1,5 +1,5 @@
terraform { terraform {
required_version = ">= 0.12.0" required_version = ">= 0.12.2"
} }
provider "aws" { provider "aws" {

View File

@@ -1,5 +1,5 @@
terraform { terraform {
required_version = ">= 0.12" required_version = ">= 0.12.2"
required_providers { required_providers {
aws = ">= 2.31.0" aws = ">= 2.31.0"