Skip to main content
Version: 2.8.1

highbond_strategy_custom_attribute (Resource)

Schema

Required

termString The name of the custom attribute

Optional

field_typeString The data type of the custom attribute
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.
optionsList of String Selectable options of the values (when the field_type is select or multiselect)

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_custom_attribute" "main"{
term = "Risk category paragraph"
field_type = "rich_text"
}

resource "highbond_strategy_custom_attribute" "select"{
term = "Risk category select"
field_type = "select"
options = ["Strategic","Operational","Compliance","Financial & Reporting"]
}