Skip to content
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

r/aws_connect_routing_profile #22813

Merged
merged 22 commits into from
Mar 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
d804031
feat(connect): add RoutingProfile schema
GlennChia Jan 28, 2022
fadc39c
feat(connect): add RoutingProfile read
GlennChia Jan 28, 2022
1487050
feat(connect): add RoutingProfile create
GlennChia Jan 28, 2022
69877fb
feat(connect): add RoutingProfile update
GlennChia Jan 28, 2022
3d64680
feat(connect): NoopContext RoutingProfile delete
GlennChia Jan 28, 2022
c1daa21
feat(connect): add aws_connect_routing_profile
GlennChia Jan 28, 2022
ae19edc
test(connect): check RoutingProfile exists
GlennChia Jan 28, 2022
c076ff3
test(connect): check RoutingProfile destroy
GlennChia Jan 28, 2022
95db493
test(connect): RoutingProfile basic, update desc
GlennChia Jan 28, 2022
a46b629
test(connect): RoutingProfile skip disappears
GlennChia Jan 28, 2022
1b1db52
test(connect): RoutingProfile update concurrency
GlennChia Jan 28, 2022
967151f
test(connect): RoutingProfile update outboundQueue
GlennChia Jan 28, 2022
7f91283
test(connect): RoutingProfile update queue configs
GlennChia Jan 28, 2022
c75a190
docs(connect): add aws_connect_routing_profile
GlennChia Jan 28, 2022
0793166
ci(connect): changelog for RoutingProfile
GlennChia Jan 28, 2022
80c1050
feat(connect): RoutingProfile add, remove queues
GlennChia Jan 28, 2022
e45dd9d
test(connect): RoutingProfile add, rm, upd queues
GlennChia Jan 28, 2022
0027f1c
chore(connect): fix spelling mistake golangci-lint
GlennChia Jan 28, 2022
7a89683
Merge branch 'main' into f-aws_connect_routing_profile
GlennChia Feb 2, 2022
e7039fd
fix(connect): lint errors, change tfawserr package
GlennChia Feb 2, 2022
29f9be2
Merge branch 'main' into f-aws_connect_routing_profile
GlennChia Feb 28, 2022
658fe76
fix(connect): semgrep ci errors
GlennChia Feb 28, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/22813.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
aws_connect_routing_profile
```
1 change: 1 addition & 0 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -1086,6 +1086,7 @@ func Provider() *schema.Provider {
"aws_connect_queue": connect.ResourceQueue(),
"aws_connect_quick_connect": connect.ResourceQuickConnect(),
"aws_connect_security_profile": connect.ResourceSecurityProfile(),
"aws_connect_routing_profile": connect.ResourceRoutingProfile(),

"aws_cur_report_definition": cur.ResourceReportDefinition(),

Expand Down
3 changes: 3 additions & 0 deletions internal/service/connect/enum.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ const (
// ListQuickConnectsMaxResults Valid Range: Minimum value of 1. Maximum value of 1000.
// https://docs.aws.amazon.com/connect/latest/APIReference/API_ListQuickConnects.html
ListQuickConnectsMaxResults = 60
// ListRoutingProfileQueuesMaxResults Valid Range: Minimum value of 1. Maximum value of 100.
// https://docs.aws.amazon.com/connect/latest/APIReference/API_ListRoutingProfileQueues.html
ListRoutingProfileQueuesMaxResults = 60
// ListSecurityProfilePermissionsMaxResults Valid Range: Minimum value of 1. Maximum value of 1000.
// https://docs.aws.amazon.com/connect/latest/APIReference/API_ListSecurityProfilePermissions.html
ListSecurityProfilePermissionsMaxResults = 60
Expand Down
Loading