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
1 change: 1 addition & 0 deletions ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@
},
{
"key": "vpe_gateway_security_group_ids",
"hidden": true,
"custom_config": {
"grouping": "deployment",
"original_grouping": "deployment",
Expand Down
5 changes: 5 additions & 0 deletions solutions/fully-configurable/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -713,6 +713,11 @@ variable "vpe_gateway_service_endpoints" {
}

variable "vpe_gateway_security_group_ids" {

# Currently unused — the DA doesn't create any custom security groups.
# The default security group (automatically created with the VPC) is attached to the VPE gateway since no other security groups are present.
# May be useful in the future when DA supports using an existing VPC with custom security groups or if DA supports creating additional security groups we can take `vpe_gateway_security_group_names` as input.

description = "List of security group ids to attach to each endpoint gateway."
type = list(string)
default = null # Let this default value be null instead of []. Provider issue - https://github.com/IBM-Cloud/terraform-provider-ibm/issues/4546
Expand Down