highbond_columns (Resource)
Schema
Required
| column | Block Set, Min: 1 | |||||||||||||
| Nested Schema for `column`Required
 Read-Only
 | ||||||||||||||
| table_id | Number | The ID if the table | ||||||||||||
Optional
| force_updates | Boolean | Allows overriding top-level 'create_only' option. | 
| id | String | The ID of this resource. | 
Example Usage
resource "highbond_columns" "main" {
  table_id      = highbond_table.main.id
  force_updates = true // Create only with force update changes
  column {
    field_name   = "a1"
    display_name = "A1 display name"
    data_type    = "character"
  }
  column {
    field_name   = "a2"
    display_name = "A2 display name"
    data_type    = "character"
  }
}
