highbond_workflow_status_event (Resource)
Schema
Required
| event_id | String | The ID of the event | 
| status_id | String | The ID of the status | 
Optional
| force_updates | Boolean | Allows overriding top-level 'create_only' option. | 
| id | String | The ID of this resource. | 
Read-Only
| created_at | String | The timestamp identifying when the status was created | 
| updated_at | String | The timestamp identifying when the status was last updated | 
Example Usage
resource "highbond_workflow_status_event" "main" {
  status_id     = highbond_workflow_status.main.id
  event_id      = highbond_event.main.id
  force_updates = true // Create only with force update changes
}
