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.
fix: updated the default value of the prefix input to be "dev" in the DA.<br>- Marked the input as required in catalog so it will now show in the required tab of the projects UI.<br>- It is still possible omit the prefix by passing a value of null or empty string ("") when working directly with the terraform code, or by passing the string value of __NULL__ when deploying in projects or schematics. (#246)
Copy file name to clipboardExpand all lines: solutions/instances/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
@@ -75,7 +75,7 @@ This solution supports provisioning and configuring the following infrastructure
75
75
| <aname="input_ibmcloud_kms_api_key"></a> [ibmcloud\_kms\_api\_key](#input\_ibmcloud\_kms\_api\_key)| The IBM Cloud API key that can create a root key and key ring in the key management service (KMS) instance. If not specified, the 'ibmcloud\_api\_key' variable is used. Specify this key if the instance in `existing_kms_instance_crn` is in an account that's different from the Security and Compliance Centre instance. Leave this input empty if the same account owns both instances. |`string`|`null`| no |
76
76
| <aname="input_kms_endpoint_type"></a> [kms\_endpoint\_type](#input\_kms\_endpoint\_type)| The endpoint for communicating with the KMS instance. Possible values: `public`, `private.`|`string`|`"private"`| no |
77
77
| <aname="input_management_endpoint_type_for_bucket"></a> [management\_endpoint\_type\_for\_bucket](#input\_management\_endpoint\_type\_for\_bucket)| The type of endpoint for the IBM Terraform provider to use to manage Object Storage buckets. Possible values: `public`, `private`m `direct`. If you specify `private`, enable virtual routing and forwarding in your account, and the Terraform runtime must have access to the the IBM Cloud private network. |`string`|`"private"`| no |
78
-
| <aname="input_prefix"></a> [prefix](#input\_prefix)| The prefix to add to all resources created by this solution. |`string`|`null`| no |
78
+
| <aname="input_prefix"></a> [prefix](#input\_prefix)| The prefix to add to all resources that this solution creates. To not use any prefix value, you can set this value to `null` or an empty string. |`string`|`"dev"`| no |
79
79
| <aname="input_profile_attachments"></a> [profile\_attachments](#input\_profile\_attachments)| The list of Security and Compliance Center profile attachments to create that are scoped to your IBM Cloud account. The attachment schedule runs daily and defaults to the latest version of the specified profile attachments. |`list(string)`| <pre>[<br/> "IBM Cloud Framework for Financial Services"<br/>]</pre> | no |
80
80
| <aname="input_provider_visibility"></a> [provider\_visibility](#input\_provider\_visibility)| Set the visibility value for the IBM terraform provider. Supported values are `public`, `private`, `public-and-private`. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/guides/custom-service-endpoints). |`string`|`"private"`| no |
81
81
| <aname="input_provision_scc_workload_protection"></a> [provision\_scc\_workload\_protection](#input\_provision\_scc\_workload\_protection)| Whether to provision a Workload Protection instance. |`bool`|`true`| no |
en_subscription_email=var.prefix!=null?"${var.prefix} - Email for Security and Compliance Center Subscription":"Email for Security and Compliance Center Subscription"
355
+
en_subscription_email=try("${local.prefix}-Email for Security and Compliance Center Subscription", "Email for Security and Compliance Center Subscription")
description="The prefix to add to all resources created by this solution."
32
-
default=null
31
+
description="The prefix to add to all resources that this solution creates. To not use any prefix value, you can set this value to `null` or an empty string."
0 commit comments