Skip to main content
Version: Latest Version (2.9.1)

highbond_asset_type_section (Resource)

Schema

Required

asset_type_idString The ID of the asset type
sectionBlock List, Min: 1 Sections are groupings of attribute types that display together in the UI
Nested Schema for `section`

Required

idNumber The ID of the section
nameString The name of the section. This value is unique for each section

Optional

attribute_type_idsList of String The ID of the attribute type

Optional

force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.

Example Usage

// For an asset type, only one highbond_asset_type_section can be created  
resource "highbond_asset_type_section" "VenderSection" {
asset_type_id = highbond_asset_type.main.id
force_updates = true // Create only with force update changes

section {
id = 0
name = "Section 1"
attribute_type_ids = [highbond_attribute_type.paragraph.id, highbond_attribute_type.text.id]
}

section {
id = 1
name = "Section 2"
attribute_type_ids = [highbond_attribute_type.paragraph.id]
}
}