Terraform genesyscloud_routing_queue skills syntax error

Docs say skills should be a block but Terraform rejects it. Getting Error: Unsupported block type on line 12.

resource “genesyscloud_routing_queue” “main” {
name = “Test”
skills {
name = “english”
}
}

The API expects a list of objects. How do I map this in HCL?