Given the following screenshot taken from the UI, you can see that this Workbin has no division, which is weird because all workbins should have at least the Home division automatically assigned
When looking further, for example with an terraform export, it does indeed have a division id assigned.
terraform apply
resource "genesyscloud_tf_export" "export" {
directory = "./export"
include_filter_resources = ["genesyscloud_task_management_workbin"]
include_state_file = true
export_as_hcl = true
}
Shows me the following resource
resource "genesyscloud_task_management_workbin" "WorkitemBin" {
division_id = "73aa5af1-16d7-427f-9c3d-d393898cb1c6"
name = "WorkitemBin"
}
Functionally nothing is wrong and everything works fine, but it is a bit confusing that the UI believes there is no division assigned.
Is this something we should worry about?