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
refactor: allow prefix as empty string, marked as required in catalog variables and set default value of prefix as dev (#274)
* refactor: Update prefix logic in DA
* fix: update prefix value
* fix: Updated logic with try
---------
Co-authored-by: Arya Girish K <[email protected]>
Copy file name to clipboardExpand all lines: solutions/standard/main.tf
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,14 @@ locals {
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
7
# tflint-ignore: terraform_unused_declarations
8
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
Copy file name to clipboardExpand all lines: solutions/standard/variables.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -38,8 +38,8 @@ variable "region" {
38
38
39
39
variable"prefix" {
40
40
type=string
41
-
description="The prefix to apply to all resources created by this solution."
42
-
default=null
41
+
description="The prefix to add to all resources created by this solution. To not use any prefix value, you can set this value to `null` or an empty string."
0 commit comments