Skip to content

Commit

Permalink
Merge pull request #2552 from TimeIncOSS/f-aws-iam-role-validation
Browse files Browse the repository at this point in the history
provider/aws: Add validation for aws_iam_role_policy.name
  • Loading branch information
radeksimko committed Jun 29, 2015
2 parents ce831e8 + fed64b4 commit 406967e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions builtin/providers/aws/resource_aws_iam_role_policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package aws
import (
"fmt"
"net/url"
"regexp"
"strings"

"github.com/aws/aws-sdk-go/aws"
Expand Down Expand Up @@ -30,6 +31,19 @@ func resourceAwsIamRolePolicy() *schema.Resource {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: func(v interface{}, k string) (ws []string, errors []error) {
// https://github.com/boto/botocore/blob/2485f5c/botocore/data/iam/2010-05-08/service-2.json#L8291-L8296
value := v.(string)
if len(value) > 128 {
errors = append(errors, fmt.Errorf(
"%q cannot be longer than 128 characters", k))
}
if !regexp.MustCompile("^[\\w+=,.@-]+$").MatchString(value) {
errors = append(errors, fmt.Errorf(
"%q must match [\\w+=,.@-]", k))
}
return
},
},
"role": &schema.Schema{
Type: schema.TypeString,
Expand Down

0 comments on commit 406967e

Please sign in to comment.