highbond_objective (Resource)
Schema
Required
assigned_user_id | String | The unique identifier (UID) of the assigned user |
parent_resource_id | Number | ID of associated project or framework |
reference | String | The reference number or code for the objective |
title | String | The title of the objective |
Optional
actual_end_date | String | Actual end date | |||||||||
actual_milestone_date | String | Actual milestone date | |||||||||
actual_start_date | String | Actual start date | |||||||||
assurance | Number | The level of assurance that the controls in place effectively mitigate risk to the business | |||||||||
custom_attributes | Block Set | An array of custom attributes defined on the project type used by the project this objective is from | |||||||||
Nested Schema for `custom_attributes`Optional
| |||||||||||
description | String | A detailed description of the objective | |||||||||
division_department | String | The division or department responsible for the objective | |||||||||
entities | Set of String | List of entities associated with objectives | |||||||||
executive_owner | String | The executive owner of the objective. Specifying a person's name or email does not automatically send them an email notification about the objective | |||||||||
force_updates | Boolean | Allows overriding top-level 'create_only' option. | |||||||||
framework_origin_id | String | In the Projects app, a project objective can have a related counterpart in an associated framework. The framework_origin attribute allows you to associate an objective in a project with its related counterpart in a framework. Can be set only when parent_resource_type is projects | |||||||||
id | String | The ID of this resource. | |||||||||
inherent_risk | Number | The risk that an activity would pose if no controls or other mitigating factors were in place. Can also be referred to as the gross risk, or risks before controls, and can act as the baseline for your organization's risk tolerance or appetite | |||||||||
owner | String | The person responsible for the objective. Specifying a person's name or email does not automatically send them an email notification about the objective | |||||||||
parent_resource_type | String | Each objective has an associated project or framework as parent_resource_type | |||||||||
planned_end_date | String | Planned end date | |||||||||
planned_milestone_date | String | Planned milestone date | |||||||||
planned_start_date | String | Planned start date | |||||||||
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 | |||||||||
residual_risk | Number | The risk that remains after controls are taken into account. Can also be referred to as the net risk or risk after controls |
Read-Only
created_at | String | The timestamp identifying when the objective was created |
risk_control_matrix_id | String | The id of the risk control matrix |
testing_round_1_id | String | The id of testing round 1 (if applicable) |
testing_round_2_id | String | The id of testing round 2 (if applicable) |
testing_round_3_id | String | The id of testing round 3 (if applicable) |
testing_round_4_id | String | The id of testing round 4 (if applicable) |
updated_at | String | The timestamp identifying when the objective was last updated |
walkthrough_summary_id | String | The id of the walkthrough summary |
Example Usage
resource "highbond_objective" "main" {
title = "Stay Fit"
reference = "Gardenia"
description = "My objective is to stay positive"
division_department = "R&D"
owner = "ras@asd.com"
executive_owner = "ras@asd.com"
position = 1
assigned_user_id = "Enter a valid UUID here"
parent_resource_id = highbond_project.main.id
parent_resource_type = "projects" //frameworks
entities = [highbond_entity.master.id, highbond_entity.me.id]
framework_origin_id = highbond_objective.framework.id
force_updates = true // Create only with force update changes
planned_start_date = "2020-12-01"
planned_end_date = "2021-12-01"
actual_start_date = "2020-12-05"
actual_end_date = "2021-12-05"
actual_milestone_date = "2020-12-10"
planned_milestone_date = "2020-12-05"
custom_attributes {
id = "24518"
term = "Short Answer"
value = ["Short Answer"]
}
custom_attributes {
id = "24519"
term = "Dropdown"
value = ["DropDown"]
}
}