Skip to content

Commit

Permalink
validate name len
Browse files Browse the repository at this point in the history
  • Loading branch information
DrFaust92 committed Sep 4, 2020
1 parent 517098a commit 7d7820f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/resource_aws_glue_workflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func resourceAwsGlueWorkflow() *schema.Resource {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
ValidateFunc: validation.NoZeroValues,
ValidateFunc: validation.StringLenBetween(1, 255),
},
"tags": tagsSchema(),
},
Expand Down

0 comments on commit 7d7820f

Please sign in to comment.