-
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
b/aws_connect_routing_profile-queue batched association #30895
b/aws_connect_routing_profile-queue batched association #30895
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.
LGTM 🚀.
% make testacc TESTARGS='-run=TestAccConnect_serial/RoutingProfile' PKG=connect
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/connect/... -v -count 1 -parallel 20 -run=TestAccConnect_serial/RoutingProfile -timeout 180m
=== RUN TestAccConnect_serial
=== PAUSE TestAccConnect_serial
=== CONT TestAccConnect_serial
=== RUN TestAccConnect_serial/RoutingProfile
=== RUN TestAccConnect_serial/RoutingProfile/basic
=== RUN TestAccConnect_serial/RoutingProfile/queues
=== RUN TestAccConnect_serial/RoutingProfile/updateQueueBatchAssociations
=== RUN TestAccConnect_serial/RoutingProfile/dataSource_name
=== RUN TestAccConnect_serial/RoutingProfile/disappears
routing_profile_test.go:77: Routing Profiles do not support deletion today
=== RUN TestAccConnect_serial/RoutingProfile/tags
=== RUN TestAccConnect_serial/RoutingProfile/concurrency
=== RUN TestAccConnect_serial/RoutingProfile/defaultOutboundQueue
=== RUN TestAccConnect_serial/RoutingProfile/createQueueBatchAssociations
=== RUN TestAccConnect_serial/RoutingProfile/dataSource_id
--- PASS: TestAccConnect_serial (1080.90s)
--- PASS: TestAccConnect_serial/RoutingProfile (1080.90s)
--- PASS: TestAccConnect_serial/RoutingProfile/basic (137.90s)
--- PASS: TestAccConnect_serial/RoutingProfile/queues (158.78s)
--- PASS: TestAccConnect_serial/RoutingProfile/updateQueueBatchAssociations (140.40s)
--- PASS: TestAccConnect_serial/RoutingProfile/dataSource_name (88.46s)
--- SKIP: TestAccConnect_serial/RoutingProfile/disappears (0.00s)
--- PASS: TestAccConnect_serial/RoutingProfile/tags (121.79s)
--- PASS: TestAccConnect_serial/RoutingProfile/concurrency (115.40s)
--- PASS: TestAccConnect_serial/RoutingProfile/defaultOutboundQueue (115.21s)
--- PASS: TestAccConnect_serial/RoutingProfile/createQueueBatchAssociations (116.10s)
--- PASS: TestAccConnect_serial/RoutingProfile/dataSource_id (86.85s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/connect 1085.954s
@GlennChia Thanks for the contribution 🎉 👏. |
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
From the service Limit documentation, the
Queues per routing profile per instance
quota is set at50
and is adjustable. This PR removes theMaxItems
on thequeue_configs
argument.In addition, the following APIs have limits on the number of queues that can be associated/disassociated from the routing profile per API call.
10
10
10
from testingRelations
Closes #27014
Closes #27573
References
Output from Acceptance Testing