Skip to main content
Version: Latest Version (2.9.1)

highbond_narrative (Resource)

Schema

Required

objective_idNumber The ID of the objective
titleString The title of the narrative

Optional

descriptionString A detailed description of the narrative
force_updatesBoolean Allows overriding top-level 'create_only' option.
framework_origin_idString In the Projects app, a project narrative can have a related counterpart in an associated framework. The framework_origin attribute allows you to associate an narrative in a project with its related counterpart in a framework
idString The ID of this resource.
positionNumber The value that determines the order in which it is displayed in the index action. position must be a value between 1 and 2147483647

Read-Only

created_atString The timestamp identifying when the narrative was created
updated_atString The timestamp identifying when the narrative was last updated

Example Usage

resource "highbond_narrative" "famework" {
objective_id = highbond_objective.framework.id
title = "Narrative of the Objective"
description = "Narrative Description Sample"
position = 1
}
resource "highbond_narrative" "main" {
objective_id = highbond_objective.main.id
title = "Narrative of the Objective"
description = "Narrative Description Sample"
position = 1
framework_origin_id = highbond_narrative.framework.id
force_updates = true // Create only with force update changes
}