Skip to main content
Version: Latest Version (2.9.1)

highbond_objective (Data Source)

Schema

Required

parent_resource_idNumber ID of associated project or framework
titleString

Optional

idString The ID of this resource.
parent_resource_typeString Each objective has an associated project or framework as parent_resource_type

Read-Only

is_availableBoolean
objectivesList of Object
Nested Schema for `objectives`

Read-Only

actual_end_dateString
actual_milestone_dateString
actual_start_dateString
assigned_user_idString
custom_attributesSet of Object
Nested Schema for `objectives.custom_attributes`

Read-Only

idString
termString
valueSet of String
descriptionString
division_departmentString
entitiesList of String
executive_ownerString
framework_origin_idString
idString
ownerString
parent_resource_idNumber
parent_resource_typeString
planned_end_dateString
planned_milestone_dateString
planned_start_dateString
positionNumber
referenceString
risk_control_matrix_idString
testing_round_1_idString
testing_round_2_idString
testing_round_3_idString
testing_round_4_idString
titleString
walkthrough_summary_idString

Example Usage

data "highbond_project_type" "main" {
name = "Test project type name"
}

data "highbond_framework" "main" {
name = "Test framework name"
}

// Sample for framework objective
data "highbond_objective" "famework_objective" {
title = "Test objective framework"
parent_resource_id = data.highbond_framework.main.frameworks[0].id
parent_resource_type = "frameworks" // This is an optional field. This is only valid in case of frameworks
}

// We can access this datasource value as below: data.highbond_objective.famework_objective.objectives[0].id

// Sample for project objective
data "highbond_objective" "project_objective" {
title = "Test objective project"
parent_resource_id = 34564
}