highbond_asset_type (Resource)
Schema
Required
| name | String | The name of the asset type | 
Optional
| admin_notes | String | Administrator's notes on the asset type | 
| attribute_ids | Set of String | The Attribute Types linked to this asset type | 
| category | String | Category to group the asset type under. The default category is 'assets' | 
| collection_id | String | The collection id associated with the asset type used for sending assessment questionnaires | 
| description | String | The description of the asset type | 
| display_name | String | The name that will be displayed for this asset type | 
| force_updates | Boolean | Allows overriding top-level 'create_only' option. | 
| id | String | The ID of this resource. | 
| workflow_id | String | he UUID of the Workflow that will manage the state for assets created using this asset type | 
Read-Only
| created_at | String | The date the asset type was created | 
| created_by | String | The user ID of the user who created this asset type | 
| is_archived | Boolean | Whether or not this asset type is archived | 
| symbolic_name | String | The symbolic name for this asset type | 
| updated_at | String | The date the asset type was updated | 
| updated_by | String | The user ID of the user who updated this asset type | 
Example Usage
resource "highbond_asset_type" "main" {
  name          = "Vendor test1"
  description   = "This is vendor asset type"
  display_name  = "Vendor"
  collection_id = highbond_collection.main.id
  admin_notes   = "Used to represent a third party vendor we work with."
  category      = "assets"
  workflow_id   = highbond_workflow.main.id
  attribute_ids = [highbond_attribute_type.paragraph.id]
  force_updates = true // Create only with force update changes
}
