highbond_asset_record_type (Resource)
Schema
Required
| is_root | Boolean | Whether or not this is a root asset record type |
| name | String | The name of the asset record type |
Optional
| admin_notes | String | Administrator's notes on the asset record type |
| description | String | The description of the asset record type |
| display_name | String | The name that will be displayed for this asset record type |
| force_updates | Boolean | Allows overriding top-level 'create_only' option. |
| id | String | The ID of this resource. |
| workflow_id | String | The UUID of the Workflow that will manage the state for records created using this asset record type |
Read-Only
| created_at | String | The date the asset record type was created | ||||||
| created_by | String | The user ID of the user who created this asset record type | ||||||
| is_archived | Boolean | Whether or not this asset record type is archived | ||||||
| org_id | String | The ID of the organization that this asset record type belongs to | ||||||
| permitted_parents | List of Object | Array containing the parents that are permitted in parent-child relationship configurations with this asset record type | ||||||
Nested Schema for `permitted_parents`Read-Only
| ||||||||
| symbolic_name | String | The symbolic name for this asset record type | ||||||
| updated_at | String | The date the asset record type was updated | ||||||
| updated_by | String | The user ID of the user who updated this asset record type | ||||||
Example Usage
resource "highbond_asset_record_type" "main" {
name = "Incident"
description = "An event that occurred and must be recorded in the system."
display_name = "Incident"
admin_notes = "Used to track incidents related to third party vendors and other asset types."
workflow_id = highbond_workflow.main.id //"6aa38d71-bc7d-4f48-ae0b-504c9ebfd119"
is_root = true
force_updates = true // Create only with force update changes
}
