-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
providers/aws: aws_elb: Allow alnum plus hyphen in name attribute #2580
Conversation
Ah, that has been overlooked, sorry about that! |
@@ -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-Za-z-]+$`).MatchString(value) { | |||
errors = append(errors, fmt.Errorf( | |||
"only lowercase alphanumeric characters and hyphens allowed in %q", k)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you please update the error message accordingly? Then it's good to go.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
- prevent #2580 from hapenning again
Thanks a lot Panagiotis and really sorry for any troubles caused by this bug. |
providers/aws: aws_elb: Allow alnum plus hyphen in name attribute
- prevent #2580 from hapenning again
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
@radeksimko : #2517 (comment)