Skip to content

Commit

Permalink
fix(cwevi): set 0 as valid description length
Browse files Browse the repository at this point in the history
  • Loading branch information
GlennChia committed Nov 22, 2022
1 parent 784a9c0 commit bd82a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/service/evidently/feature.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func ResourceFeature() *schema.Resource {
"description": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringLenBetween(1, 160),
ValidateFunc: validation.StringLenBetween(0, 160),
},
"entity_overrides": {
Type: schema.TypeMap,
Expand Down

0 comments on commit bd82a5a

Please sign in to comment.