highbond_table (Data Source)
Schema
Required
analysis_id | Number | The id of the analysis |
name | String | The name of the table |
Optional
id | String | The ID of this resource. |
Read-Only
is_available | Boolean | ||||||||||||||||||||||||||||
tables | List of Object | ||||||||||||||||||||||||||||
Nested Schema for `tables`Read-Only
|
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