diff --git a/examples/all-combined/main.tf b/examples/all-combined/main.tf index ae218e0e..686f2398 100644 --- a/examples/all-combined/main.tf +++ b/examples/all-combined/main.tf @@ -186,7 +186,7 @@ module "network_acl" { # OCP CLUSTER creation module "ocp_base" { source = "terraform-ibm-modules/base-ocp-vpc/ibm" - version = "3.41.2" + version = "3.41.3" cluster_name = "${var.prefix}-vpc" resource_group_id = module.resource_group.resource_group_id region = var.region @@ -197,8 +197,7 @@ module "ocp_base" { tags = [] use_existing_cos = false # outbound required by cluster proxy - disable_outbound_traffic_protection = true - import_default_worker_pool_on_create = false + disable_outbound_traffic_protection = true } diff --git a/examples/basic/main.tf b/examples/basic/main.tf index f960483b..d9a8dc3f 100644 --- a/examples/basic/main.tf +++ b/examples/basic/main.tf @@ -209,7 +209,7 @@ module "network_acl" { # OCP CLUSTER creation module "ocp_base" { source = "terraform-ibm-modules/base-ocp-vpc/ibm" - version = "3.41.2" + version = "3.41.3" cluster_name = "${var.prefix}-vpc" resource_group_id = module.resource_group.resource_group_id region = var.region @@ -220,8 +220,7 @@ module "ocp_base" { tags = [] use_existing_cos = false # outbound required by cluster proxy - disable_outbound_traffic_protection = true - import_default_worker_pool_on_create = false + disable_outbound_traffic_protection = true } diff --git a/examples/basic/version.tf b/examples/basic/version.tf index a4b04903..c0de1ed2 100644 --- a/examples/basic/version.tf +++ b/examples/basic/version.tf @@ -15,7 +15,7 @@ terraform { } ibm = { source = "IBM-Cloud/ibm" - version = "= 1.70.0" + version = "= 1.71.0" } null = { source = "hashicorp/null"