Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
39 changes: 34 additions & 5 deletions ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,13 @@
"hidden": true
},
{
"key": "default_worker_pool_labels"
"key": "default_worker_pool_labels",
"type": "array",
"custom_config": {
"type": "code_editor",
"grouping": "deployment",
"original_grouping": "deployment"
}
},
{
"key": "enable_autoscaling_for_default_pool",
Expand All @@ -666,7 +672,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",
Expand Down Expand Up @@ -713,21 +727,36 @@
"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",
"type": "array",
"custom_config": {
"type": "code_editor",
"grouping": "deployment",
"original_grouping": "deployment"
}
},
{
"key": "ibmcloud_kms_api_key"
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 @@ -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
Expand Down