Skip to main content
Version: Latest Version (2.9.1)

highbond_strategy_risk_assurance (Resource)

Schema

Required

projects_objective_idString The identifier of the objective inside Projects.
projects_project_idString The identifier of the audit/project inside Projects.
strategy_risk_idNumber The ID of the Strategy risk.

Optional

idString The ID of this resource.

Read-Only

created_atString The timestamp identifying when the assurance was created.
projects_objective_uriString The URI of the objective inside Projects
updated_atString The timestamp identifying when the assurance was last updated.

Example Usage

resource "highbond_project_type" "main" {
name = "Vibranium Project Type"
description = "Custom Test Project Types Description"
workflow = "control"
}
resource "highbond_project" "main" {
name = "Vibranium Project"
start_date = "2019-02-03"
target_date = "2019-02-08"
status = "active"
project_type_id = highbond_project_type.main.id
}
resource "highbond_objective" "main" {
title = "Vibranium Objective"
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 = "%s"
parent_resource_id = highbond_project.main.id
parent_resource_type = "projects"
}
resource "highbond_strategy_risk" "main" {
title = "Test Risk"
status = "assess"
}

resource "highbond_strategy_risk_assurance" "testRisk" {
strategy_risk_id = highbond_strategy_risk.main.id
projects_project_id = highbond_project.main.id
projects_objective_id = highbond_objective.main.id
}