Skip to content

Commit

Permalink
update tags regexp to include space character as valid
Browse files Browse the repository at this point in the history
  • Loading branch information
harshavardhana committed Sep 28, 2022
1 parent 53f5600 commit 8848d8a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/tags/tags.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const (
// https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#tag-restrictions
// borrowed from this article and also testing various ASCII characters following regex
// is supported by AWS S3 for both tags and values.
var validTagKeyValue = regexp.MustCompile(`^[a-zA-Z0-9-+\-._:/@]+$`)
var validTagKeyValue = regexp.MustCompile(`^[a-zA-Z0-9-+\-._:/@ ]+$`)

func checkKey(key string) error {
if len(key) == 0 {
Expand Down
8 changes: 8 additions & 0 deletions pkg/tags/tags_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ func TestParseTags(t *testing.T) {
"key1=value1&key2=value2",
false,
},
{
"store+forever=false&factory=true",
false,
},
{
" store forever =false&factory=true",
false,
},
{
fmt.Sprintf("%0128d=%0256d", 1, 1),
false,
Expand Down

0 comments on commit 8848d8a

Please sign in to comment.