diff --git a/examples/basic/main.tf b/examples/basic/main.tf index 4ea75501..357aaae8 100644 --- a/examples/basic/main.tf +++ b/examples/basic/main.tf @@ -12,7 +12,7 @@ locals { module "resource_group" { count = var.existing_cluster_rg_id == null ? 1 : 0 source = "terraform-ibm-modules/resource-group/ibm" - version = "1.1.6" + version = "1.2.0" # if an existing resource group is not set (null) create a new one using prefix resource_group_name = "${var.prefix}-resource-group" } @@ -78,7 +78,7 @@ locals { module "ocp_base" { count = var.existing_cluster_name == null ? 1 : 0 source = "terraform-ibm-modules/base-ocp-vpc/ibm" - version = "3.41.7" + version = "3.46.14" resource_group_id = local.cluster_rg_id region = var.region tags = var.resource_tags diff --git a/solutions/deploy/cpd-image-build/main.tf b/solutions/deploy/cpd-image-build/main.tf index ec6f174e..62e3d2a6 100644 --- a/solutions/deploy/cpd-image-build/main.tf +++ b/solutions/deploy/cpd-image-build/main.tf @@ -39,7 +39,7 @@ data "ibm_code_engine_project" "code_engine_project" { module "resource_group" { count = var.code_engine_project_id == null ? 1 : 0 source = "terraform-ibm-modules/resource-group/ibm" - version = "1.1.6" + version = "1.2.0" resource_group_name = var.resource_group_exists ? null : local.resource_group_name existing_resource_group_name = var.resource_group_exists ? var.resource_group : null diff --git a/tests/resources/main.tf b/tests/resources/main.tf index ffc0d58c..9e62dcef 100644 --- a/tests/resources/main.tf +++ b/tests/resources/main.tf @@ -3,7 +3,7 @@ ############################################################################## module "landing_zone" { - source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-landing-zone//patterns//roks-quickstart?ref=v7.0.1" + source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-landing-zone//patterns//roks-quickstart?ref=v7.4.4" ibmcloud_api_key = var.ibmcloud_api_key region = var.region prefix = var.prefix