highbond_asset_type_section (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]
  }
}

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 (see below for nested schema)

Optional

  • force_updates (Boolean) Allows overriding top-level 'create_only' option.

Read-Only

  • id (String) The ID of this resource.

Nested Schema for section

Required:

  • id (Number) The ID of the section
  • name (String) The name of the section. This value is unique for each section

Optional:

  • attribute_type_ids (List of String) The ID of the attribute type