aws: Fix validation for aws_elb.name

This commit is contained in:
Radek Simko 2015-06-26 18:08:13 +01:00
parent bfcd936f3a
commit 60a7597a4c
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ func resourceAwsElb() *schema.Resource {
ForceNew: true,
ValidateFunc: func(v interface{}, k string) (ws []string, errors []error) {
value := v.(string)
if !regexp.MustCompile(`^[0-9a-z-]$`).MatchString(value) {
if !regexp.MustCompile(`^[0-9a-z-]+$`).MatchString(value) {
errors = append(errors, fmt.Errorf(
"only lowercase alphanumeric characters and hyphens allowed in %q", k))
}