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.<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. (#22)
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
@@ -27,8 +27,8 @@ variable "region" {
27
27
28
28
variable"prefix" {
29
29
type=string
30
-
description="Prefix to append to all resources created by this example"
31
-
default=null
30
+
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