highbond_narrative (Resource)
Schema
Required
objective_id | Number | The ID of the objective |
title | String | The title of the narrative |
Optional
description | String | A detailed description of the narrative |
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
framework_origin_id | String | 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 |
id | String | The ID of this resource. |
position | Number | 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_at | String | The timestamp identifying when the narrative was created |
updated_at | String | 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
}