Skip to content
Closed
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
4 changes: 2 additions & 2 deletions ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@
"default_value": "us-south"
},
{
"key": "allow_public_access_to_cluster",
"key": "allow_public_access_to_cluster_management",
"required": true
},
{
Expand Down Expand Up @@ -1467,7 +1467,7 @@
}
},
{
"key": "allow_public_access_to_cluster"
"key": "allow_public_access_to_cluster_management"
},
{
"key": "allow_outbound_traffic"
Expand Down
2 changes: 1 addition & 1 deletion solutions/fully-configurable/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ module "ocp_base" {
cluster_ready_when = var.cluster_ready_when
custom_security_group_ids = var.custom_security_group_ids
disable_outbound_traffic_protection = var.allow_outbound_traffic
disable_public_endpoint = !var.allow_public_access_to_cluster
disable_public_endpoint = !var.allow_public_access_to_cluster_management
enable_ocp_console = var.enable_ocp_console
ignore_worker_pool_size_changes = var.ignore_worker_pool_size_changes
kms_config = local.kms_config
Expand Down
4 changes: 2 additions & 2 deletions solutions/fully-configurable/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,9 @@ variable "use_private_endpoint" {
default = true
}

variable "allow_public_access_to_cluster" {
variable "allow_public_access_to_cluster_management" {
type = bool
description = "Set to true to allow public access to master node of the cluster by enabling public endpoint."
description = "Set to true to allow public access to master node of the cluster by enabling public endpoint. WARNING: This setting cannot be changed after cluster creation."
default = false
}

Expand Down
2 changes: 1 addition & 1 deletion solutions/quickstart/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,6 @@ module "ocp_base" {
worker_pools = local.worker_pools
disable_outbound_traffic_protection = var.allow_outbound_traffic
access_tags = var.access_tags
disable_public_endpoint = !var.allow_public_access_to_cluster
disable_public_endpoint = !var.allow_public_access_to_cluster_management
cluster_config_endpoint_type = "default"
}
4 changes: 2 additions & 2 deletions solutions/quickstart/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ variable "size" {
default = "mini"
}

variable "allow_public_access_to_cluster" {
variable "allow_public_access_to_cluster_management" {
type = bool
description = "Set to true to allow public access to master node of the cluster by enabling public endpoint."
description = "Set to true to allow public access to master node of the cluster by enabling public endpoint. WARNING: This setting cannot be changed after cluster creation."
default = true
}

Expand Down