Terraform CX as Code: genecloud_queue skills attribute syntax error

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 genesyscloud provider version is 1.5.0 and confirmed the API contract expects []string for skill IDs.
  • Tried wrapping the skill IDs in explicit tolist() and toset() 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"]
}