-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
added eks cluster_name validation #19078
added eks cluster_name validation #19078
Conversation
…sting (#19081) Reference: https://keybase.io/hashicorp (click key to see fingerprint) Reference: #19080
Hi @philnichol 👋 Thank you for submitting this. Just a drive-by comment about the unit test failure that if you rebase against the main branch, it should be resolved. 👍 |
…terraform-provider-aws into e-eks-adding-name-validation
Thank you for your contribution! 🚀 Please note that the Remove any changes to the |
Thanks @bflad , and apologies for incorrect branch name and missing CHANGELOG stuff, haven't contributed in a while and submitted before reading updated contributing guidelines, should probably be named td-. |
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.
Looks good 🚀
I've updated the changelog file to have one release-note
block per change.
Acceptance test results
--- PASS: TestAccAWSEksFargateProfile_disappears (1316.49s)
--- PASS: TestAccAWSEksFargateProfile_Multi_Profile (1682.64s)
Thanks for that! |
This has been released in version 3.38.0 of the Terraform AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template for triage. Thanks! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Community Note
Closes #18806
Output from acceptance testing:
Thanks in advance for your review!
The regex listed in the documentation is actually incorrect, I've left feedback on that page so hopefully it gets corrected
https://docs.aws.amazon.com/eks/latest/APIReference/API_CreateCluster.html
Listed as
^[0-9A-Za-z][A-Za-z0-9\-_]*
but should be^[0-9A-Za-z][A-Za-z0-9\-_]+$
.Wasn't sure if I had to run acc tests for the resources themselves so please let me know if I do, I just skipped them since it will be expensive and long, but can run them if required 😄