highbond_table (Resource)
Schema
Required
analysis_id | Number | The ID of the analysis where the requested table will be created |
name | String | The name of the table |
Optional
description | String | The description of the table |
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | The ID of this resource. |
questionnaire_id | String | The id of the single questionnaire associated with this table (assessment tables only) |
script_name | String | The name of the script, or process, used to generate the result set |
type | String | Table type, this cannot be updated once table is created |
Read-Only
created_at | String | The date the table was created |
data_table_id | Number | Underlying reporting table ID for this table. Necessary for e.g. Storyboards |
updated_at | String | The date the table was updated |
Example Usage
resource "highbond_table" "main" {
analysis_id = highbond_analysis.main.id
name = "Example table"
description = "Dummy description"
script_name = "Dummy script name"
type = "data_analytic"
force_updates = true // Create only with force update changes
}