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: Added a default prefix value to the DA (cos). NOTE: It is still supported to pass null (or __NULL__ if in projects / schematics) if you do not wan't to use any prefix (#812)
Copy file name to clipboardExpand all lines: solutions/instance/variables.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@ variable "ibmcloud_api_key" {
6
6
7
7
variable"prefix" {
8
8
type=string
9
-
description="(Optional) Prefix to append to all resources created by this solution."
10
-
default=null
9
+
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