Skip to content

Commit 4fab4cd

Browse files
authored
feat: added support to use existing event notification instance (#98)
1 parent 0faefe9 commit 4fab4cd

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

ibm_catalog.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,13 @@
222222
"description": "List of emails to configure event notifications.",
223223
"required": false
224224
},
225+
{
226+
"key" : "existing_en_instance_crn",
227+
"type": "string",
228+
"default_value": "__NULL__",
229+
"description": "The CRN of existing event notification instance. If not supplied, a new instance is created.",
230+
"required": false
231+
},
225232
{
226233
"key": "existing_secrets_manager_crn",
227234
"type": "string",

stack_definition.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,13 @@
4848
"default": [],
4949
"custom_config": {}
5050
},
51+
{
52+
"name": "existing_en_instance_crn",
53+
"required": false,
54+
"type": "string",
55+
"default": "__NULL__",
56+
"custom_config": {}
57+
},
5158
{
5259
"name": "existing_secrets_manager_crn",
5360
"required": false,
@@ -177,6 +184,10 @@
177184
"name": "existing_cos_instance_crn",
178185
"value": "ref:../../members/1b - Object storage/outputs/cos_instance_id"
179186
},
187+
{
188+
"name": "existing_en_instance_crn",
189+
"value": "ref:../../inputs/existing_en_instance_crn"
190+
},
180191
{
181192
"name": "skip_cos_kms_auth_policy",
182193
"value": true

0 commit comments

Comments
 (0)