Skip to main content
Version: Latest Version (2.9.1)

highbond_asset_type (Resource)

Schema

Required

nameString The name of the asset type

Optional

admin_notesString Administrator's notes on the asset type
attribute_idsSet of String The Attribute Types linked to this asset type
categoryString Category to group the asset type under. The default category is 'assets'
collection_idString The collection id associated with the asset type used for sending assessment questionnaires
descriptionString The description of the asset type
display_nameString The name that will be displayed for this asset type
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.
workflow_idString he UUID of the Workflow that will manage the state for assets created using this asset type

Read-Only

created_atString The date the asset type was created
created_byString The user ID of the user who created this asset type
is_archivedBoolean Whether or not this asset type is archived
symbolic_nameString The symbolic name for this asset type
updated_atString The date the asset type was updated
updated_byString 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
}