Configures an AWS Connect user with multiple security profiles and a desk phone setup including phone number.

Terraform Template

resource "aws_connect_user" "example" {
  instance_id = "aws_connect_instance.example.id"
  name = "example"
  password = "Password123"

  phone_config {
    after_contact_work_time_limit = 0
    auto_accept = false
    desk_phone_number = "+112345678912"
    phone_type = "DESK_PHONE"
  }
  routing_profile_id = "aws_connect_routing_profile.example.routing_profile_id"
  security_profile_ids = ["aws_connect_security_profile.example.security_profile_id", "aws_connect_security_profile.example2.security_profile_id"]
}