Skip to main content
Version: Latest Version (2.9.1)

highbond_table (Data Source)

Schema

Required

analysis_idNumber The id of the analysis
nameString The name of the table

Optional

idString The ID of this resource.

Read-Only

is_availableBoolean
tablesList of Object
Nested Schema for `tables`

Read-Only

created_atString
data_table_idNumber
descriptionString
idString
nameString
questionnaire_idString
script_nameString
typeString
updated_atString

Example Usage

// Sample 1
resource "highbond_analysis" "main" {
name = "Analysis Name"
}
resource "highbond_table" "name" {
name = "Table Name"
}
data "highbond_table" "main" {
table_name = highbond_table.main.name
analysis_id = highbond_analysis.main.id
}

// Sample 2
data "highbond_analysis" "main" {
name = "Analysis Name"
}
resource "highbond_table" "name" {
name = "Table Name"
}
data "highbond_table" "main" {
table_name = highbond_table.main.name
analysis_id = data.highbond_analysis[0].main.id
}

// We can access this datasource value as below: data.highbond_table.main.tables[0].id