highbond_strategy_risk_assurance (Resource)

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
}

Schema

Required

  • projects_objective_id (String) The identifier of the objective inside Projects.
  • projects_project_id (String) The identifier of the audit/project inside Projects.
  • strategy_risk_id (Number) The ID of the Strategy risk.

Read-Only

  • created_at (String) The timestamp identifying when the assurance was created.
  • id (String) The ID of this resource.
  • projects_objective_uri (String) The URI of the objective inside Projects
  • updated_at (String) The timestamp identifying when the assurance was last updated.