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
fix: updated the default value of the prefix input to be "dev" in the DA (#372)
* refactor: Update prefix logic in DA
* fix: Update default value for prefix
* fix: Added description
* SKIP UPGRADE TEST
* fix: update prefix value
* fix: Updated prefix logic with try()
* fix: Resolved the comments
---------
Co-authored-by: Arya Girish K <arya.girish.k@ibm.com>
# Validate that a value has been passed for 'existing_kms_instance_crn' and 'kms_endpoint_url' if not using existing EN instance
21
21
# tflint-ignore: terraform_unused_declarations
22
22
validate_kms_input=(var.existing_kms_instance_crn==null|| var.kms_endpoint_url==null) && var.existing_en_instance_crn==null?tobool("A value for 'existing_kms_instance_crn' and 'kms_endpoint_url' must be passed when no value is passed for 'existing_en_instance_crn'.") :true
# If existing KMS root key CRN passed, parse details from it
@@ -67,13 +68,13 @@ locals {
67
68
# Create cross account COS / KMS auth policy if not using existing EN instance, if not using existing bucket, if 'skip_cos_kms_auth_policy' is false, and if a value is passed for 'ibmcloud_kms_api_key'
description="(Optional) Prefix to add to all resources created by this solution."
47
-
default=null
46
+
description="(Optional) 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