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
Copy file name to clipboardExpand all lines: solutions/standard/main.tf
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,10 @@
4
4
locals {
5
5
# tflint-ignore: terraform_unused_declarations
6
6
validate_resource_group=(var.existing_secrets_manager_crn==null&& var.resource_group_name==null) ?tobool("Resource group name can not be null if existing secrets manager CRN is not set.") :true
7
+
# tflint-ignore: terraform_unused_declarations
8
+
validate_event_notifications=(var.existing_event_notification_instance_crn==null&& var.enable_event_notification) ?tobool("To enable event notifications, an existing event notifications CRN must be set.") :true
9
+
# tflint-ignore: terraform_unused_declarations
10
+
validate_event_notifications_disabled=(var.existing_event_notification_instance_crn!=null&&!var.enable_event_notification) ?tobool("When an existing event notifications CRN is set, enable_event_notification should be true.") :true
description="Set this to true to configure a Secrets Manager private certificate engine for an existing instance. If set to false, no private certificate engine will be configured for your instance."
description="Set this to true to to configure a Secrets Manager IAM credentials engine. If set to false, no IAM engine will be configured for your instance."
description="Set this to true to enable lifecycle notifications for your Secrets Manager instance by connecting an Event Notifications service. When setting this to true, a value must be passed for `existing_en_instance_crn` variable."
0 commit comments