From d79ecc1dc2221cd0910c1cd92ec1886bd8d7a368 Mon Sep 17 00:00:00 2001 From: Nir Argaman Date: Tue, 26 Sep 2023 09:12:48 +0300 Subject: [PATCH] Change "terraform-redhat/rosa-sts" version to 0.0.14 --- ci/e2e/account_roles_files/main.tf | 2 +- .../cluster_with_managed_oidc_config/main.tf | 2 +- .../cluster_with_unmanaged_oidc_config/main.tf | 4 ++-- examples/create_account_roles/main.tf | 2 +- examples/create_rosa_sts_cluster/classic_sts/cluster/main.tf | 2 +- .../oidc_configuration/oidc_provider/main.tf | 4 ++-- tests/tf-manifests/aws/account-roles/main.tf | 4 ++-- tests/tf-manifests/rhcs/clusters/rosa-classic/main.tf | 4 ++-- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/ci/e2e/account_roles_files/main.tf b/ci/e2e/account_roles_files/main.tf index 6dba3534..b7fd7161 100755 --- a/ci/e2e/account_roles_files/main.tf +++ b/ci/e2e/account_roles_files/main.tf @@ -28,7 +28,7 @@ data "rhcs_versions" "all" {} module "create_account_roles" { source = "terraform-redhat/rosa-sts/aws" - version = "0.0.12" + version = "0.0.14" create_operator_roles = false create_oidc_provider = false diff --git a/ci/e2e/oidc_configuration/cluster_with_managed_oidc_config/main.tf b/ci/e2e/oidc_configuration/cluster_with_managed_oidc_config/main.tf index 5cf3b1f6..4bed203d 100644 --- a/ci/e2e/oidc_configuration/cluster_with_managed_oidc_config/main.tf +++ b/ci/e2e/oidc_configuration/cluster_with_managed_oidc_config/main.tf @@ -48,7 +48,7 @@ data "rhcs_rosa_operator_roles" "operator_roles" { module "operator_roles_and_oidc_provider" { source = "terraform-redhat/rosa-sts/aws" - version = "0.0.12" + version = "0.0.14" create_operator_roles = true create_oidc_provider = true diff --git a/ci/e2e/oidc_configuration/cluster_with_unmanaged_oidc_config/main.tf b/ci/e2e/oidc_configuration/cluster_with_unmanaged_oidc_config/main.tf index b3c9712b..cceda442 100644 --- a/ci/e2e/oidc_configuration/cluster_with_unmanaged_oidc_config/main.tf +++ b/ci/e2e/oidc_configuration/cluster_with_unmanaged_oidc_config/main.tf @@ -45,7 +45,7 @@ provider "aws" { # Create the OIDC config resources on AWS module "oidc_config_input_resources" { source = "terraform-redhat/rosa-sts/aws" - version = "0.0.12" + version = "0.0.14" create_oidc_config_resources = true @@ -72,7 +72,7 @@ data "rhcs_rosa_operator_roles" "operator_roles" { module "operator_roles_and_oidc_provider" { source = "terraform-redhat/rosa-sts/aws" - version = "0.0.12" + version = "0.0.14" create_operator_roles = true create_oidc_provider = true diff --git a/examples/create_account_roles/main.tf b/examples/create_account_roles/main.tf index 413e2350..44cf60a0 100644 --- a/examples/create_account_roles/main.tf +++ b/examples/create_account_roles/main.tf @@ -38,7 +38,7 @@ data "rhcs_versions" "all" {} module "create_account_roles" { source = "terraform-redhat/rosa-sts/aws" - version = "0.0.12" + version = "0.0.14" create_operator_roles = false create_oidc_provider = false 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 2b03fbb2..3709a51c 100644 --- a/examples/create_rosa_sts_cluster/classic_sts/cluster/main.tf +++ b/examples/create_rosa_sts_cluster/classic_sts/cluster/main.tf @@ -74,7 +74,7 @@ data "rhcs_rosa_operator_roles" "operator_roles" { module "operator_roles" { source = "terraform-redhat/rosa-sts/aws" - version = "0.0.12" + version = "0.0.14" create_operator_roles = true create_oidc_provider = true 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 3b347188..8ff4b4a3 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 @@ -47,7 +47,7 @@ module "oidc_config_input_resources" { count = var.managed ? 0 : 1 source = "terraform-redhat/rosa-sts/aws" - version = "0.0.12" + version = "0.0.14" create_oidc_config_resources = true @@ -73,7 +73,7 @@ data "rhcs_rosa_operator_roles" "operator_roles" { module "operator_roles_and_oidc_provider" { source = "terraform-redhat/rosa-sts/aws" - version = "0.0.12" + version = "0.0.14" create_operator_roles = true create_oidc_provider = true diff --git a/tests/tf-manifests/aws/account-roles/main.tf b/tests/tf-manifests/aws/account-roles/main.tf index 4c455e0f..220afd7c 100644 --- a/tests/tf-manifests/aws/account-roles/main.tf +++ b/tests/tf-manifests/aws/account-roles/main.tf @@ -29,7 +29,7 @@ data "rhcs_versions" "all" { module "create_account_roles"{ source = "terraform-redhat/rosa-sts/aws" - version = ">= 0.0.12" + version = ">= 0.0.14" create_operator_roles = false create_oidc_provider = false @@ -42,4 +42,4 @@ module "create_account_roles"{ rosa_openshift_version= var.openshift_version account_role_policies = data.rhcs_policies.all_policies.account_role_policies operator_role_policies = data.rhcs_policies.all_policies.operator_role_policies -} \ No newline at end of file +} diff --git a/tests/tf-manifests/rhcs/clusters/rosa-classic/main.tf b/tests/tf-manifests/rhcs/clusters/rosa-classic/main.tf index 4a6d9e60..d90d28be 100644 --- a/tests/tf-manifests/rhcs/clusters/rosa-classic/main.tf +++ b/tests/tf-manifests/rhcs/clusters/rosa-classic/main.tf @@ -51,7 +51,7 @@ resource "rhcs_rosa_oidc_config_input" "oidc_input" { module "oidc_config_input_resources" { count = var.oidc_config == "un-managed" ? 1 : 0 source = "terraform-redhat/rosa-sts/aws" - version = ">= 0.0.12" + version = ">= 0.0.14" create_oidc_config_resources = var.oidc_config == "un-managed" @@ -80,7 +80,7 @@ data "rhcs_rosa_operator_roles" "operator_roles" { module "operator_roles_and_oidc_provider" { count = var.oidc_config == null ? 0 : 1 source = "terraform-redhat/rosa-sts/aws" - version = ">= 0.0.12" + version = ">= 0.0.14" create_operator_roles = true create_oidc_provider = true