Skip to content

Commit

Permalink
Update internal/service/keyspaces/table.go
Browse files Browse the repository at this point in the history
Co-authored-by: Matthew Burgess <549318+mattburgess@users.noreply.github.com>
  • Loading branch information
bsamsom and mattburgess committed May 11, 2023
1 parent 99ece2b commit edead2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/service/keyspaces/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ func ResourceTable() *schema.Resource {
ValidateFunc: validation.All(
validation.StringLenBetween(1, 48),
validation.StringMatch(
regexp.MustCompile(`^[a-z0-9][a-z0-9_]{0,47}$`),
regexp.MustCompile(`[a-zA-Z0-9][a-zA-Z0-9_]{0,47}$`),
"The name must consist of lower case alphanumerics and underscores.",
),
),
Expand Down

0 comments on commit edead2f

Please sign in to comment.