Skip to main content
Version: Latest Version (2.9.1)

highbond_strategy_risk_objective (Resource)

Schema

Required

strategy_objective_idString The ID of the Strategy Objective.
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 custom attribute was create
nameString The name of the objective.
segment_idsSet of String Segments connected to this objective, see Strategy Map.
updated_atString The timestamp identifying when the custom attribute was last updated

Example Usage

resource "highbond_strategy_segment" "seg" {
name = "seg"
}
resource "highbond_strategy_objective" "main" {
name = "stratobj"
segment_ids = [highbond_strategy_segment.seg.id]
}
resource "highbond_strategy_risk" "main" {
title = "stratrisk"
status = "assess"
}

resource "highbond_strategy_risk_objective" "main" {
strategy_risk_id = highbond_strategy_risk.main1.id
strategy_objective_id = highbond_strategy_objective.main.id
}