Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 1 commit
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
30 changes: 28 additions & 2 deletions ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -264,16 +264,42 @@
"key": "en_email_list",
"type": "array",
"default_value": [],
"description": "List of emails to configure event notifications.",
"required": false
},
{
"key": "scc_service_plan",
"type": "string",
"default_value": "security-compliance-center-standard-plan",
"required": false
"description": "The pricing plan to use for the IBM Cloud Security and Compliance Center.",
"required": false,
"options": [
{
"displayname": "standard",
"value": "security-compliance-center-standard-plan"
},
{
"displayname": "trial",
"value": "security-compliance-center-trial-plan"
}
]
}
],
"install_type": "fullstack"
"install_type": "fullstack",
"outputs": [
{
"key": "elasticsearch_hostname",
"description": "Elasticsearch instance hostname."
},
{
"key": "elasticsearch_port",
"description": "Elasticsearch instance port."
},
{
"key": "elasticsearch_service_credentials_json",
"description": "Elasticsearch instance service credentials json map."
}
]
}
]
}
Expand Down
21 changes: 14 additions & 7 deletions stack_definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
"type": "array",
"hidden": false,
"default": [],
"description": "List of emails to configure event notifications.",
"custom_config": {}
},
{
Expand All @@ -85,6 +86,7 @@
"type": "string",
"hidden": false,
"default": "security-compliance-center-standard-plan",
"description": "The pricing plan to use for the IBM Cloud Security and Compliance Center.",
"custom_config": {}
}
],
Expand Down Expand Up @@ -454,6 +456,15 @@
{
"name": "member_host_flavor",
"value": "b3c.4x16.encrypted"
},
{
"name": "service_credential_names",
"value": {
"elasticsearch_admin" : "Administrator",
"elasticsearch_reader" : "Operator",
"elasticsearch_viewer" : "Viewer",
"elasticsearch_editor" : "Editor"
}
}
],
"name": "7 - Databases for Elasticsearch",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be renamed "3b - Databases for Elasticsearch" since it has a dependency on 1 - Account Infrastructure Base and 2a - Security Service - Key Management only (and then rename 3a - Security Service - Observability)?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

going with this for now - will revisit later

Expand All @@ -462,19 +473,15 @@
],
"outputs": [
{
"name": "es_hostname",
"name": "elasticsearch_hostname",
"value": "ref:./members/7 - Databases for Elasticsearch/outputs/hostname"
},
{
"name": "es_port",
"name": "elasticsearch_port",
"value": "ref:./members/7 - Databases for Elasticsearch/outputs/port"
},
{
"name": "es_certificate_base64",
"value": "ref:./members/7 - Databases for Elasticsearch/outputs/certificate_base64"
},
{
"name": "es_service_credentials_json",
"name": "elasticsearch_service_credentials_json",
"value": "ref:./members/7 - Databases for Elasticsearch/outputs/service_credentials_json"
}
]
Expand Down