From dfbf4fad65d4ba8a0686244b84b6ff63a296cc5f Mon Sep 17 00:00:00 2001 From: radtriste Date: Fri, 11 Oct 2024 14:04:37 +0200 Subject: [PATCH] OCM-11804 | ci: Avoid to use hashicorp/aws 5.71.0 Due to https://github.com/hashicorp/terraform-provider-aws/issues/39676 --- examples/create_account_roles/main.tf | 2 +- examples/create_rosa_sts_cluster/classic_sts/cluster/main.tf | 2 +- .../oidc_configuration/cluster_with_managed_oidc_config/main.tf | 2 +- .../cluster_with_unmanaged_oidc_config/main.tf | 2 +- .../oidc_configuration/oidc_provider/main.tf | 2 +- tests/tf-manifests/aws/account-roles/rosa-classic/main.tf | 2 +- tests/tf-manifests/aws/account-roles/rosa-hcp/main.tf | 2 +- tests/tf-manifests/aws/kms/main.tf | 2 +- .../aws/oidc-provider-operator-roles/rosa-classic/main.tf | 2 +- .../aws/oidc-provider-operator-roles/rosa-hcp/main.tf | 2 +- tests/tf-manifests/aws/proxy/main.tf | 2 +- tests/tf-manifests/aws/security-groups/main.tf | 2 +- tests/tf-manifests/aws/vpc-tags/main.tf | 2 +- tests/tf-manifests/aws/vpc/rosa-classic/main.tf | 2 +- tests/tf-manifests/aws/vpc/rosa-hcp/main.tf | 2 +- tests/tf-manifests/rhcs/clusters/rosa-classic/main.tf | 2 +- tests/tf-manifests/rhcs/clusters/rosa-hcp/main.tf | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/examples/create_account_roles/main.tf b/examples/create_account_roles/main.tf index 887eb8e5..6c44a19a 100644 --- a/examples/create_account_roles/main.tf +++ b/examples/create_account_roles/main.tf @@ -18,7 +18,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } rhcs = { version = ">= 1.1.0" diff --git a/examples/create_rosa_sts_cluster/classic_sts/cluster/main.tf b/examples/create_rosa_sts_cluster/classic_sts/cluster/main.tf index 3709a51c..03a95e3f 100644 --- a/examples/create_rosa_sts_cluster/classic_sts/cluster/main.tf +++ b/examples/create_rosa_sts_cluster/classic_sts/cluster/main.tf @@ -18,7 +18,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } rhcs = { version = ">= 1.1.0" diff --git a/examples/create_rosa_sts_cluster/oidc_configuration/cluster_with_managed_oidc_config/main.tf b/examples/create_rosa_sts_cluster/oidc_configuration/cluster_with_managed_oidc_config/main.tf index abb09dbc..27e0fbe5 100644 --- a/examples/create_rosa_sts_cluster/oidc_configuration/cluster_with_managed_oidc_config/main.tf +++ b/examples/create_rosa_sts_cluster/oidc_configuration/cluster_with_managed_oidc_config/main.tf @@ -18,7 +18,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } rhcs = { version = ">= 1.1.0" diff --git a/examples/create_rosa_sts_cluster/oidc_configuration/cluster_with_unmanaged_oidc_config/main.tf b/examples/create_rosa_sts_cluster/oidc_configuration/cluster_with_unmanaged_oidc_config/main.tf index 13e689b4..905535c2 100644 --- a/examples/create_rosa_sts_cluster/oidc_configuration/cluster_with_unmanaged_oidc_config/main.tf +++ b/examples/create_rosa_sts_cluster/oidc_configuration/cluster_with_unmanaged_oidc_config/main.tf @@ -18,7 +18,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } rhcs = { version = ">= 1.1.0" diff --git a/examples/create_rosa_sts_cluster/oidc_configuration/oidc_provider/main.tf b/examples/create_rosa_sts_cluster/oidc_configuration/oidc_provider/main.tf index 8ff4b4a3..c33f716c 100644 --- a/examples/create_rosa_sts_cluster/oidc_configuration/oidc_provider/main.tf +++ b/examples/create_rosa_sts_cluster/oidc_configuration/oidc_provider/main.tf @@ -18,7 +18,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } rhcs = { version = ">= 1.1.0" diff --git a/tests/tf-manifests/aws/account-roles/rosa-classic/main.tf b/tests/tf-manifests/aws/account-roles/rosa-classic/main.tf index a801c161..6b03d725 100644 --- a/tests/tf-manifests/aws/account-roles/rosa-classic/main.tf +++ b/tests/tf-manifests/aws/account-roles/rosa-classic/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } rhcs = { version = ">= 1.6.3" diff --git a/tests/tf-manifests/aws/account-roles/rosa-hcp/main.tf b/tests/tf-manifests/aws/account-roles/rosa-hcp/main.tf index 81037684..aa2c4a04 100644 --- a/tests/tf-manifests/aws/account-roles/rosa-hcp/main.tf +++ b/tests/tf-manifests/aws/account-roles/rosa-hcp/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } rhcs = { version = ">= 1.6.3" diff --git a/tests/tf-manifests/aws/kms/main.tf b/tests/tf-manifests/aws/kms/main.tf index 3a6c1785..3dd8756b 100644 --- a/tests/tf-manifests/aws/kms/main.tf +++ b/tests/tf-manifests/aws/kms/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } } } diff --git a/tests/tf-manifests/aws/oidc-provider-operator-roles/rosa-classic/main.tf b/tests/tf-manifests/aws/oidc-provider-operator-roles/rosa-classic/main.tf index 4817da90..682f2012 100644 --- a/tests/tf-manifests/aws/oidc-provider-operator-roles/rosa-classic/main.tf +++ b/tests/tf-manifests/aws/oidc-provider-operator-roles/rosa-classic/main.tf @@ -3,7 +3,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } rhcs = { version = ">= 1.6.3" diff --git a/tests/tf-manifests/aws/oidc-provider-operator-roles/rosa-hcp/main.tf b/tests/tf-manifests/aws/oidc-provider-operator-roles/rosa-hcp/main.tf index e913e621..1eb621c0 100644 --- a/tests/tf-manifests/aws/oidc-provider-operator-roles/rosa-hcp/main.tf +++ b/tests/tf-manifests/aws/oidc-provider-operator-roles/rosa-hcp/main.tf @@ -3,7 +3,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } rhcs = { version = ">= 1.6.3" diff --git a/tests/tf-manifests/aws/proxy/main.tf b/tests/tf-manifests/aws/proxy/main.tf index 458e961c..19baf010 100644 --- a/tests/tf-manifests/aws/proxy/main.tf +++ b/tests/tf-manifests/aws/proxy/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } } } diff --git a/tests/tf-manifests/aws/security-groups/main.tf b/tests/tf-manifests/aws/security-groups/main.tf index d1223313..a67df7c0 100644 --- a/tests/tf-manifests/aws/security-groups/main.tf +++ b/tests/tf-manifests/aws/security-groups/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } } } diff --git a/tests/tf-manifests/aws/vpc-tags/main.tf b/tests/tf-manifests/aws/vpc-tags/main.tf index eb343523..667afa96 100644 --- a/tests/tf-manifests/aws/vpc-tags/main.tf +++ b/tests/tf-manifests/aws/vpc-tags/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } } } diff --git a/tests/tf-manifests/aws/vpc/rosa-classic/main.tf b/tests/tf-manifests/aws/vpc/rosa-classic/main.tf index 03e8103b..4a861d4a 100644 --- a/tests/tf-manifests/aws/vpc/rosa-classic/main.tf +++ b/tests/tf-manifests/aws/vpc/rosa-classic/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } } } diff --git a/tests/tf-manifests/aws/vpc/rosa-hcp/main.tf b/tests/tf-manifests/aws/vpc/rosa-hcp/main.tf index b3437268..fc982d68 100644 --- a/tests/tf-manifests/aws/vpc/rosa-hcp/main.tf +++ b/tests/tf-manifests/aws/vpc/rosa-hcp/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } } } diff --git a/tests/tf-manifests/rhcs/clusters/rosa-classic/main.tf b/tests/tf-manifests/rhcs/clusters/rosa-classic/main.tf index 8f71b2fb..095ff488 100644 --- a/tests/tf-manifests/rhcs/clusters/rosa-classic/main.tf +++ b/tests/tf-manifests/rhcs/clusters/rosa-classic/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } rhcs = { version = ">= 1.0.1" diff --git a/tests/tf-manifests/rhcs/clusters/rosa-hcp/main.tf b/tests/tf-manifests/rhcs/clusters/rosa-hcp/main.tf index ee3e4ef4..0577f8ff 100644 --- a/tests/tf-manifests/rhcs/clusters/rosa-hcp/main.tf +++ b/tests/tf-manifests/rhcs/clusters/rosa-hcp/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.20.0" + version = ">= 4.20.0, != 5.71.0" } rhcs = { version = ">= 1.0.1"