Merge pull request #11383 from brad-larson/brad-fix-regexp-validation

Fix: Incorrect AWS Lambda Qualifier Regexp
This commit is contained in:
Clint 2017-01-26 16:38:00 -06:00 committed by GitHub
commit e3c89da542
2 changed files with 3 additions and 1 deletions

View File

@ -251,7 +251,7 @@ func validateLambdaQualifier(v interface{}, k string) (ws []string, errors []err
"%q cannot be longer than 128 characters: %q", k, value))
}
// http://docs.aws.amazon.com/lambda/latest/dg/API_AddPermission.html
pattern := `^[a-zA-Z0-9$_]+$`
pattern := `^[a-zA-Z0-9$_-]+$`
if !regexp.MustCompile(pattern).MatchString(value) {
errors = append(errors, fmt.Errorf(
"%q doesn't comply with restrictions (%q): %q",

View File

@ -111,6 +111,8 @@ func TestValidateLambdaQualifier(t *testing.T) {
"prod",
"PROD",
"MyTestEnv",
"contains-dashes",
"contains_underscores",
"$LATEST",
}
for _, v := range validNames {