Skip to main content
Version: Latest Version (2.9.1)

highbond_table_identifier (Resource)

Schema

Required

record_identifiersList of String Select a few non-sensitive fields that identify a record. You can select any imported data, Results metadata fields, and questionnaire fields. These fields will be displayed in emails sent to recipients and when they fill out questionnaires. In sequential certifications, recipients always see previous answers
table_idString The data table ID of the table

Optional

force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.
primary_keyString Field that uniquely identifies a record. Specifying a primary key field allows uploads of records sharing the same primary key to be merged rather than duplicated

Example Usage

resource "highbond_table_identifier" "main" {
table_id = highbond_table.main.id
primary_key = highbond_columns.main.column[0].field_name
record_identifiers = [":record_id", "metadata.priority", highbond_columns.main.column[0].field_name]
depends_on = [
highbond_columns.main
]
}