Skip to content

Commit

Permalink
Allow "/" in aws glue crawler name
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanKilleen authored Apr 29, 2021
1 parent bc48c21 commit b95d42c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/resource_aws_glue_crawler.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func resourceAwsGlueCrawler() *schema.Resource {
Required: true,
ValidateFunc: validation.All(
validation.StringLenBetween(1, 255),
validation.StringMatch(regexp.MustCompile(`[a-zA-Z0-9-_$#]+$`), ""),
validation.StringMatch(regexp.MustCompile(`[a-zA-Z0-9-_$#\/]+$`), ""),
),
},
"arn": {
Expand Down

0 comments on commit b95d42c

Please sign in to comment.