Skip to main content
Version: Latest Version (2.9.1)

highbond_table (Resource)

Schema

Required

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

Optional

descriptionString The description of the table
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.
questionnaire_idString The id of the single questionnaire associated with this table (assessment tables only)
script_nameString The name of the script, or process, used to generate the result set
typeString Table type, this cannot be updated once table is created

Read-Only

created_atString The date the table was created
data_table_idNumber Underlying reporting table ID for this table. Necessary for e.g. Storyboards
updated_atString 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
}