highbond_strategy_risk_objective (Resource)

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
}

Schema

Required

  • strategy_objective_id (String) The ID of the Strategy Objective.
  • strategy_risk_id (Number) The ID of the Strategy risk.

Read-Only

  • created_at (String) The timestamp identifying when the custom attribute was create
  • id (String) The ID of this resource.
  • name (String) The name of the objective.
  • segment_ids (Set of String) Segments connected to this objective, see Strategy Map.
  • updated_at (String) The timestamp identifying when the custom attribute was last updated