Skip to main content
Version: Latest Version (2.9.1)

highbond_survey (Resource)

Schema

Required

analysis_idNumber The ID of the analysis where the requested table will be created
nameString The name of the survey
questionnaire_idString The ID of the questionnaire

Optional

descriptionString The description of the survey
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.

Read-Only

created_atString The date the survey was created
data_table_idNumber The data table ID of the survey table
survey_urlString The url for answering the linked questionnaire
updated_atString The date the survey was updated

Example Usage

resource "highbond_survey" "main" {
name = "Example Survey"
description = "Description"
analysis_id = highbond_analysis.main.id
questionnaire_id = highbond_questionnaire.main.id
force_updates = true // Create only with force update changes
}