Skip to main content
Version: Latest Version (2.9.1)

highbond_records (Resource)

Schema

Required

columnsString A key value pair. The key represents the column name and the value represents the column data type
recordsString A key value pair. The key represents the column name and the value represents the column data.
table_idNumber The ID of the table

Optional

force_updatesBoolean Allows overriding top-level 'create_only' option.
idString 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")
}