Just noticed that applying a genecloud_queue resource with the skills block fails with Error: expected skills to be a list, got set even though the documentation implies a list of skill IDs. My HCL looks standard.
- Verified the
genesyscloudprovider version is 1.5.0 and confirmed the API contract expects[]stringfor skill IDs. - Tried wrapping the skill IDs in explicit
tolist()andtoset()functions within the Terraform block, but the plan still crashes.
hcl
resource "genecloud_queue" "test_queue" {
name = "Test"
skills = ["skill-uuid-1", "skill-uuid-2"]
}