Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions examples/all-combined/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
}


Expand Down
5 changes: 2 additions & 3 deletions examples/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
}


Expand Down
2 changes: 1 addition & 1 deletion examples/basic/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ terraform {
}
ibm = {
source = "IBM-Cloud/ibm"
version = "= 1.70.0"
version = "= 1.71.0"
}
null = {
source = "hashicorp/null"
Expand Down