Skip to content

Commit

Permalink
Change "terraform-redhat/rosa-sts" version to 0.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
nirarg authored and openshift-merge-robot committed Sep 26, 2023
1 parent bc172c4 commit d79ecc1
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion ci/e2e/account_roles_files/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/create_account_roles/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions tests/tf-manifests/aws/account-roles/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
}
}
4 changes: 2 additions & 2 deletions tests/tf-manifests/rhcs/clusters/rosa-classic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit d79ecc1

Please sign in to comment.