This template configures an Amazon Connect Queue with Quick Connect IDs to facilitate rapid connections.

Terraform Template

resource "aws_connect_queue" "test" {
  description = "Example Description"
  hours_of_operation_id = "12345678-1234-1234-1234-123456789012"
  instance_id = "aaaaaaaa-bbbb-cccc-dddd-111111111111"
  name = "Example Name"
  quick_connect_ids = ["12345678-abcd-1234-abcd-123456789012"]

  tags = {
    Name = "Example Queue with Quick Connect IDs"
  }
}