// 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]
}
}
asset_type_id
(String) The ID of the asset typesection
(Block List, Min: 1) Sections are groupings of attribute types that display together in the UI (see below for nested schema)force_updates
(Boolean) Allows overriding top-level 'create_only' option.id
(String) The ID of this resource.section
Required:
id
(Number) The ID of the sectionname
(String) The name of the section. This value is unique for each sectionOptional:
attribute_type_ids
(List of String) The ID of the attribute type