diff --git a/ibm_catalog.json b/ibm_catalog.json index 15541348..e9659bcf 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -653,7 +653,12 @@ "hidden": true }, { - "key": "default_worker_pool_labels" + "key": "default_worker_pool_labels", + "custom_config": { + "type": "code_editor", + "grouping": "deployment", + "original_grouping": "deployment" + } }, { "key": "enable_autoscaling_for_default_pool", @@ -666,7 +671,15 @@ "key": "default_pool_maximum_number_of_nodes" }, { - "key": "additional_security_group_ids" + "key": "additional_security_group_ids", + "custom_config": { + "type": "array", + "grouping": "deployment", + "original_grouping": "deployment", + "config_constraints": { + "type": "string" + } + } }, { "key": "existing_subnet_ids", @@ -713,21 +726,35 @@ "hidden": true }, { - "key": "custom_security_group_ids" + "key": "custom_security_group_ids", + "custom_config": { + "type": "array", + "grouping": "deployment", + "original_grouping": "deployment", + "config_constraints": { + "type": "string" + } + } }, { "key": "attach_ibm_managed_security_group", "hidden": true }, { - "key": "additional_lb_security_group_ids" + "key": "additional_lb_security_group_ids", + "description": "A list of additional security group IDs to be attached to the load balancers associated with the cluster. These groups are applied in addition to the default IBM-managed security group." }, { "key": "number_of_lbs", "hidden": true }, { - "key": "additional_vpe_security_group_ids" + "key": "additional_vpe_security_group_ids", + "custom_config": { + "type": "code_editor", + "grouping": "deployment", + "original_grouping": "deployment" + } }, { "key": "ibmcloud_kms_api_key" diff --git a/solutions/fully-configurable/variables.tf b/solutions/fully-configurable/variables.tf index d3201227..c7987401 100644 --- a/solutions/fully-configurable/variables.tf +++ b/solutions/fully-configurable/variables.tf @@ -316,14 +316,14 @@ variable "attach_ibm_managed_security_group" { } variable "additional_lb_security_group_ids" { - description = "Additional security groups to add to the load balancers associated with the cluster. Ensure that the `number_of_lbs` is set to the number of LBs associated with the cluster. This comes in addition to the IBM maintained security group." + description = "List of additional security group IDs to add to the load balancers associated with the cluster. Ensure that the `number_of_lbs` variable is set to the number of Load Balancers associated with the cluster. This comes in addition to the IBM maintained security group." type = list(string) default = [] nullable = false } variable "number_of_lbs" { - description = "The number of LBs to associated the `additional_lb_security_group_names` security group with." + description = "The total number of Load Balancers in the cluster that should be associated with the security groups defined in `additional_lb_security_group_ids` variable." type = number default = 1 nullable = false