Skip to main content
Version: Latest Version (2.9.1)

highbond_questionnaire_section (Resource)

Schema

Required

nameString The name of the section
questionnaire_idString The ID of the questionnaire

Optional

descriptionString The description of the section
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.
positionNumber The position value determines the order of items within the questionnaire
reference_idString Unique identifier for the Section within the questionnaire

Read-Only

created_atString The date the section layout was created
item_typeString The type of the questionnaire item
updated_atString The date the section layout was updated

Example Usage

resource "highbond_questionnaire_section" "main" {
questionnaire_id = highbond_questionnaire.main.id
name = "Section"
description = "Section description"
position = 1
reference_id = "Section"
force_updates = true // Create only with force update changes
}