highbond_questionnaire_section (Resource)
Schema
Required
| name | String | The name of the section | 
| questionnaire_id | String | The ID of the questionnaire | 
Optional
| description | String | The description of the section | 
| 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 Section within the questionnaire | 
Read-Only
| created_at | String | The date the section layout was created | 
| item_type | String | The type of the questionnaire item | 
| updated_at | String | 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
}
