highbond_strategy_risk_objective (Resource)
Schema
Required
strategy_objective_id | String | The ID of the Strategy Objective. |
strategy_risk_id | Number | The ID of the Strategy risk. |
Optional
id | String | The ID of this resource. |
Read-Only
created_at | String | The timestamp identifying when the custom attribute was create |
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 |
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
}