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 May 28, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ You need the following permissions to run this module.
102
102
| <aname="input_cos_instance_crn"></a> [cos\_instance\_crn](#input\_cos\_instance\_crn)| CRN of the Cloud Object Storage to store SCC data. Required when creating a new SCC instance. |`string`|`null`| no |
103
103
| <aname="input_en_instance_crn"></a> [en\_instance\_crn](#input\_en\_instance\_crn)| The CRN of Event Notifications instance to be used with SCC. If no value is provided, Event Notifications will not be enabled for this SCC instance |`string`|`null`| no |
104
104
| <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 |
105
-
| <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 |
105
+
| <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 Notfications instance. |`string`|`"compliance"`| no |
106
106
| <aname="input_existing_scc_instance_crn"></a> [existing\_scc\_instance\_crn](#input\_existing\_scc\_instance\_crn)| The CRN of an existing Security and Compliance Center instance. If not supplied, a new instance will be created. |`string`|`null`| no |
107
107
| <aname="input_instance_name"></a> [instance\_name](#input\_instance\_name)| Name of the security and compliance instance that will be provisioned by this module |`string`| n/a | yes |
108
108
| <aname="input_plan"></a> [plan](#input\_plan)| Pricing plan to create SCC instance. Options include security-compliance-center-standard-plan or security-compliance-center-trial-plan |`string`|`"security-compliance-center-standard-plan"`| no |
Copy file name to clipboardExpand all lines: variables.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -87,8 +87,8 @@ variable "en_instance_crn" {
87
87
88
88
variable"en_source_name" {
89
89
type=string
90
-
default=null
91
-
description="The source name to use for the Event Notifications integration. Required if a value is passed for `en_instance_crn`."
90
+
default="compliance"
91
+
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 Notfications instance."
0 commit comments