Skip to main content
Version: Latest Version (2.9.1)

highbond_strategy_risk_tag (Resource)

Schema

Required

strategy_risk_idNumber The ID of the Strategy risk.
strategy_tag_idString The ID of the Strategy tag.

Optional

idString The ID of this resource.

Read-Only

created_atString The timestamp identifying when the metric was created.
nameString The name of the tag.
updated_atString The timestamp identifying when the metric was last updated.

Example Usage

resource "highbond_strategy_risk" "risk" {
title = "Test Risk"
}

resource "highbond_strategy_tag" "tag" {
name = "Strategy Tag"
}

resource "highbond_strategy_risk_tag" "risktag" {
strategy_risk_id = highbond_strategy_risk.risk.id
strategy_tag_id = highbond_strategy_tag.tag.id
}