Skip to main content
Version: Latest Version (2.9.1)

highbond_entity (Resource)

Schema

Required

titleString The title of the entity

Optional

child_entity_idList of String The IDs of the childern entity
descriptionString A detailed description of the entity.
entity_category_idString The ID of the category
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.
parent_entity_idString The ID of the parent entity

Read-Only

children_countNumber A count of entity children
created_atString The timestamp identifying when the entity was created
updated_atString The timestamp identifying when the entity was last updated

Example Usage

resource "highbond_entity" "main" {
title = "New entity_10"
parent_entity_id = "48280"
entity_category_id = highbond_entity_category.main.id
child_entity_id = ["35499"]
force_updates = true // Create only with force update changes
}