Skip to content

Commit 7b9c30e

Browse files
authored
fix: Update da-implementation-guidelines.md (#79)
1 parent 08dbc44 commit 7b9c30e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/da-implementation-guidelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ variable "prefix" {
5353
5454
validation {
5555
# must not exceed 16 characters in length
56-
condition = length(var.prefix) <= 16
56+
condition = var.prefix == null || var.prefix == "" ? true : length(var.prefix) <= 16
5757
error_message = "Prefix must not exceed 16 characters."
5858
}
5959
}
60-
```
60+
```

0 commit comments

Comments
 (0)