From a73ea1a8823f7f25434f7b27080f051a67731300 Mon Sep 17 00:00:00 2001 From: Igor Rodionov Date: Tue, 5 Sep 2023 17:16:24 +0300 Subject: [PATCH] Fix components (https://github.com/cloudposse/terraform-aws-components/pull/855) Co-authored-by: cloudpossebot Co-authored-by: Andriy Knysh --- src/CHANGELOG.md | 7 +++++++ src/README.md | 4 ++-- src/versions.tf | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 src/CHANGELOG.md diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md new file mode 100644 index 0000000..a211c5e --- /dev/null +++ b/src/CHANGELOG.md @@ -0,0 +1,7 @@ +## Components PR [Fix components](https://github.com/cloudposse/terraform-aws-components/pull/855) + +This is a bug fix and feature enhancement update. +No actions necessary to upgrade. + +## Fixes +* Fix bug related to the AWS provider `>= 5.0.0` removed `redshift_cluster.cluster_security_groups`. diff --git a/src/README.md b/src/README.md index 755a3c1..cce5ca3 100644 --- a/src/README.md +++ b/src/README.md @@ -45,14 +45,14 @@ components: | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.0 | -| [aws](#requirement\_aws) | >= 4.17 | +| [aws](#requirement\_aws) | >= 4.17, <=4.67.0 | | [random](#requirement\_random) | >= 3.0 | ## Providers | Name | Version | |------|---------| -| [aws](#provider\_aws) | >= 4.17 | +| [aws](#provider\_aws) | >= 4.17, <=4.67.0 | | [random](#provider\_random) | >= 3.0 | ## Modules diff --git a/src/versions.tf b/src/versions.tf index 0fe97e0..f04baf0 100644 --- a/src/versions.tf +++ b/src/versions.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.17" + version = ">= 4.17, <=4.67.0" } random = { source = "hashicorp/random"