highbond_strategy_objective (Resource)
Schema
Required
name | String | The name of the objective. |
Optional
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | The ID of this resource. |
segment_ids | Set of String | Segments connected to this objective, see Strategy Map. |
Read-Only
created_at | String | The timestamp identifying when the custom attribute was create |
updated_at | String | The timestamp identifying when the custom attribute was last updated |
Example Usage
resource "highbond_strategy_objective" "obj" {
name = "obj 1"
}
resource "highbond_strategy_segment" "seg1" {
name = "seg 1"
}
resource "highbond_strategy_segment" "seg2" {
name = "seg 2"
}
resource "highbond_strategy_segment" "seg3" {
name = "seg 3"
}
resource "highbond_strategy_objective" "obj2" {
name = "obj 2"
segment_ids = [highbond_strategy_segment.seg1.id, highbond_strategy_segment.seg2.id, highbond_strategy_segment.seg3.id]
}