Hey folks,
I’m trying to reference an existing WFM schedule in my Terraform config without hardcoding the ID. I thought using a data source would be the clean way to go.
hcl
data "genesyscloud_wem_schedule" "main" {
name = "Shift_A"
}
It keeps erroring out saying the resource isn’t found. I checked the UI and the name is definitely “Shift_A”. Is there a specific naming convention I’m missing? Or does this data source only work with IDs?