highbond_strategy_risk_tag (Resource)

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
}

Schema

Required

  • strategy_risk_id (Number) The ID of the Strategy risk.
  • strategy_tag_id (String) The ID of the Strategy tag.

Read-Only

  • created_at (String) The timestamp identifying when the metric was created.
  • id (String) The ID of this resource.
  • name (String) The name of the tag.
  • updated_at (String) The timestamp identifying when the metric was last updated.