You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 19, 2025. It is now read-only.
@@ -62,7 +62,7 @@ This solution supports provisioning and configuring the following infrastructure
62
62
| <aname="input_cos_instance_tags"></a> [cos\_instance\_tags](#input\_cos\_instance\_tags)| The list of tags to add to the Object Storage instance. Applies only if not specifying an existing instance. |`list(string)`|`[]`| no |
63
63
| <aname="input_cos_region"></a> [cos\_region](#input\_cos\_region)| The region for the Object Storage instance. |`string`|`"us-south"`| no |
64
64
| <aname="input_en_source_description"></a> [en\_source\_description](#input\_en\_source\_description)| Optional description to give for the Event Notifications integration source. Only used if a value is passed for `en_instance_crn`. |`string`|`null`| no |
65
-
| <aname="input_en_source_name"></a> [en\_source\_name](#input\_en\_source\_name)| The source name to use for the Event Notifications integration. Required if a value is passed for `en_instance_crn`. |`string`|`null`| no |
65
+
| <aname="input_en_source_name"></a> [en\_source\_name](#input\_en\_source\_name)| The source name to use for the Event Notifications integration. Required if a value is passed for `en_instance_crn`. This name must be unique per SCC instance that is integrated with the Event Notifications instance. |`string`|`"compliance"`| no |
66
66
| <aname="input_existing_activity_tracker_crn"></a> [existing\_activity\_tracker\_crn](#input\_existing\_activity\_tracker\_crn)| The CRN of an Activity Tracker instance to send Security and Compliance Object Storage bucket events to. If no value passed, events are sent to the instance associated to the container's location unless otherwise specified in the Activity Tracker Event Routing service configuration. Ignored if using existing Object Storage bucket. |`string`|`null`| no |
67
67
| <aname="input_existing_cos_instance_crn"></a> [existing\_cos\_instance\_crn](#input\_existing\_cos\_instance\_crn)| The CRN of an existing Object Storage instance. If not specified, an instance is created. |`string`|`null`| no |
68
68
| <aname="input_existing_en_crn"></a> [existing\_en\_crn](#input\_existing\_en\_crn)| The CRN of an Event Notification instance. Used to integrate with Security and Compliance Center. |`string`|`null`| no |
Copy file name to clipboardExpand all lines: solutions/instances/variables.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -227,8 +227,8 @@ variable "existing_en_crn" {
227
227
228
228
variable"en_source_name" {
229
229
type=string
230
-
default=null
231
-
description="The source name to use for the Event Notifications integration. Required if a value is passed for `en_instance_crn`."
230
+
default="compliance"
231
+
description="The source name to use for the Event Notifications integration. Required if a value is passed for `en_instance_crn`. This name must be unique per SCC instance that is integrated with the Event Notifications instance."
0 commit comments