highbond_table_identifier (Resource)
Schema
Required
record_identifiers | List 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_id | String | The data table ID of the table |
Optional
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | The ID of this resource. |
primary_key | String | 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
]
}