highbond_handler_trigger (Resource)
Schema
Required
handler_id | String | The Id of the handler | ||||||||||||
triggers | Block List, Min: 1 | List of triggers associated with the handler | ||||||||||||
Nested Schema for `triggers`Required
Optional
|
Optional
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | The ID of this resource. |
Example Usage
// The resource 'highbond_handler_trigger' has been deprecated.
// Handlers with embedded triggers are not recommended. Please create an event to hold the trigger and link your handler to this event.
resource "highbond_handler_trigger" "name" {
handler_id = highbond_handler.main.id
// One highbond_handler_trigger should be created for its respective highbond_handler resource and the resource should have all the trigger blocks in it.
triggers {
type = "questionnaireResponded"
questionnaire_ids = [highbond_questionnaire.main.id]
}
triggers {
type = "fieldUpdated"
field_names = [highbond_attribute_type.text.field_name]
trigger_conjunction = "anyOf"
}
force_updates = true // Create only with force update changes
}