highbond_questionnaire_page_break (Resource)
Schema
Required
questionnaire_id | String | The ID of the Questionnaire |
Optional
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | The ID of this resource. |
position | Number | The position value determines the order of items within the questionnaire |
reference_id | String | Unique identifier for the Page Break within the questionnaire |
Read-Only
created_at | String | The date the page break was created |
item_type | String | The type of the questionnaire item |
updated_at | String | The date the page break was updated |
Example Usage
resource "highbond_questionnaire_page_break" "main" {
questionnaire_id = highbond_questionnaire.main.id
position = 2
reference_id = "break"
force_updates = true // Create only with force update changes
}