highbond_survey (Resource)
Schema
Required
| analysis_id | Number | The ID of the analysis where the requested table will be created | 
| name | String | The name of the survey | 
| questionnaire_id | String | The ID of the questionnaire | 
Optional
| description | String | The description of the survey | 
| force_updates | Boolean | Allows overriding top-level 'create_only' option. | 
| id | String | The ID of this resource. | 
Read-Only
| created_at | String | The date the survey was created | 
| data_table_id | Number | The data table ID of the survey table | 
| survey_url | String | The url for answering the linked questionnaire | 
| updated_at | String | 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
}
