highbond_records (Resource)
Schema
Required
columns | String | A key value pair. The key represents the column name and the value represents the column data type |
records | String | A key value pair. The key represents the column name and the value represents the column data. |
table_id | Number | The ID of the table |
Optional
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | The ID of this resource. |
Example Usage
//// The resource 'highbond_records' has been deprecated.
resource "highbond_records" "main" {
table_id = highbond_table.main.id
columns = file("columns.csv")
records = file("data.csv")
}