Terraform data source lookup failing on Genesys Cloud queue name

terraform plan
Error: Error reading Genesys Cloud Queue: 404 Not Found

I’m trying to reference an existing queue in my Terraform config using the genesyscloud_routing_queue data source. The queue definitely exists in the platform, and I’ve verified the name matches exactly. I’m running this from our US/Central server. Here is the snippet I’m using:

data "genesyscloud_routing_queue" "support_queue" {
 name = "Customer Support - Tier 1"
}

resource "genesyscloud_routing_utilization_setting" "main" {
 queue_id = data.genesyscloud_routing_queue.support_queue.id
 # ... other config
}

I’ve tried adding force = true but that doesn’t seem valid for a data source. I also tried looking it up by skill instead, but I don’t have the skill ID handy. Is there a way to make the data source lookup more forgiving? Or am I missing a specific attribute that needs to be set for the search to work? The docs are pretty sparse on error handling for these lookups. I just need the ID so I can update the utilization settings without hardcoding the resource ID.