highbond_asset_type_section (Resource)
Schema
Required
asset_type_id | String | The ID of the asset type | |||||||||
section | Block List, Min: 1 | Sections are groupings of attribute types that display together in the UI | |||||||||
Nested Schema for `section`Required
Optional
|
Optional
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | 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]
}
}