-
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
aws_connect_routing_profile: increase the hardcoded queue limit to AWS default value of 50 #27573
aws_connect_routing_profile: increase the hardcoded queue limit to AWS default value of 50 #27573
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 @dttung2905 👋
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! 😃
Hi @YakDriver , could you help me to review this PR of mine? Its a small change imo. Thank you v much |
Hi @justinretzolk, could you help me review this PR, or help me find someone who can, if possible ? Thanks alot ! |
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.
Thanks for making this PR @dttung2905 👍 Good catch for the default service quota. From the Amazon Connect service quotas documentation, it mentions that Queues per routing profile per instance
is an Adjustable
quota. Hence, the MaxItems
check can be removed entirely. Made suggestions in-line in this PR for reference. Do let me know if you have any questions!
Signed-off-by: dttung2905 <ttdao.2015@accountancy.smu.edu.sg>
Hi @GlennChia, |
Hi @dttung2905, thanks for your changes, the changes look good! Upon checking the APIs again, the Create and Associate both have limits of 10 per API call:
This means that the logic for the resource will have to be changed to do a batched association of queue configs. This depends on an existing PR to be merged first which does some logic refactoring #26151. Once that PR is merged, this PR can merge in those changes and implement the batched logic |
Hi @dttung2905, looks like the dependent PR is merged. Would be great if you can rebase on main and modify the logic to do batched associations. Thanks! |
Sure @GlennChia I will do that later this week 🙏 |
Hi @dttung2905 , @GlennChia |
Hi @TrentMacDougall, thanks for the follow up on this. @dttung2905 is working on this feature but I'll be happy to help review it when it's ready 👍 |
Hi @dttung2905, just checking in since we have quite a couple of requests coming in for this feature. Are you intending to work on the batched associations feature? I would love to take it up and help unblock users if you're ok with it? Thanks! |
Hey, @GlennChia . So sorry I have been pretty busy with work and life recently. Please go ahead with your implementation and help me unblock our community users. Thanks alot 🙏 |
Thanks for the quick update @dttung2905, I've raised a PR to fix this issue and help unblock community users. Thanks for raising the original PR to highlight the issue 😃 @TrentMacDougall, please find the updated PR that implements the batched feature at #30895, would appreciate your help to add thumbs to PR to give it more visibility. |
This functionality has been released in v4.66.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
In the aws_connect_routing_profile, increase hardcoded limit queues per routing profile from 10 to 50, which is similar to AWS default quota
Relations
Closes #27014
References
Output from Acceptance Testing
Could any reviewer help me to run the Acc Test please ? Thank you very much in advance