-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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
fix: Cloudsearch Index Fields name lenght restriction #38509
fix: Cloudsearch Index Fields name lenght restriction #38509
Conversation
Community NoteVoting for Prioritization
For Submitters
|
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.
Welcome @ulyssedsn 👋
It looks like this is your first Pull Request submission to the Terraform AWS Provider! If you haven’t already done so please make sure you have checked out our CONTRIBUTOR guide and FAQ to make sure your contribution is adhering to best practice and has all the necessary elements in place for a successful approval.
Also take a look at our FAQ which details how we prioritize Pull Requests for inclusion.
Thanks again, and welcome to the community! 😃
6157fdd
to
394f742
Compare
394f742
to
df64f3c
Compare
These documents are updated in batch via an automated process.
Hi @ulyssedsn - thanks for your submission! The changes LGTM, but I'm working through some issues in our testing accounts with the CloudSearch service. I'll get this merged as soon as that is sorted and I can run acceptance tests. |
It turns out AWS introduced a change which prevents accounts with no active CloudSearch domains from creating new ones.
As such, I can't run the full acceptance test suite in our testing accounts. I'm going to go ahead and merge this given the change is small, however, we ask for community feedback If any unexpected behavior is observed after the release of this functionality. Thanks! |
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.
LGTM 🚀
Thanks for your contribution, @ulyssedsn! 👍 |
This functionality has been released in v5.61.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. Thank you! |
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. |
Description
This PR is to fix the impossibility to define a CloudSearch index field name with 1 or 2 characters. From the client, we can create index field name such as id or x (1 or 2 letter characters), however current validation enforces that field names must begin with a letter and be at least 3 characters.
Relations
Closes #35564
References
It is true that in the AWS documentation it is specified that "Regular index field names must begin with a letter and be at least 3 and no more than 64 characters long. The allowed characters are: a-z (lower-case letters), 0-9, and _ (underscore). The name score is reserved and cannot be specified as a field name. All field and expression names must be unique."
However, we could create index field names with 1 and 2-letter characters.
Output from Acceptance Testing