Skip to main content
Version: Latest Version (2.9.1)

highbond_strategy_objective (Resource)

Schema

Required

nameString The name of the objective.

Optional

force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.
segment_idsSet of String Segments connected to this objective, see Strategy Map.

Read-Only

created_atString The timestamp identifying when the custom attribute was create
updated_atString 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]
}