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
}