highbond_strategy_risk (Resource)

Example Usage

resource "highbond_strategy_risk" "risk" {
  title       = "test risk"
  description = "test desc"
  status      = "audit" // all possible values for status are : "assess", "accepted", "audit", "continuously_audit", "mitigated" 
  strategy_custom_attributes {
    id    = highbond_strategy_custom_attribute.richText.id
    value = ["Nandana Balaram"]
  }
  strategy_custom_attributes {
    id    = highbond_strategy_custom_attribute.select.id
    value = ["Financial & Reporting"]
  }
  strategy_custom_attributes {
    id    = highbond_strategy_custom_attribute.multiselect.id
    value = ["2nd choice", "3rd choice", "1st choice"]
  }
}

resource "highbond_strategy_risk" "testRisk" {
  title = "Test Risk"
  // default "status" is set to "assess"
}

Schema

Required

  • title (String) The title of the risk.

Optional

  • description (String) A detailed description of the risk.
  • force_updates (Boolean) Allows overriding top-level 'create_only' option.
  • status (String) Current status of the risk (current column on the dashboard). Allowed values are 'assess', 'accepted', 'continuously_audit', 'mitigated'
  • strategy_custom_attributes (Block List) An array of custom attributes defined by the user that are available on this object (see below for nested schema)

Read-Only

  • created_at (String) The timestamp identifying when the risk was created.
  • heat (String) Heat of the Strategy Risk.
  • id (String) The ID of this resource.
  • residual_heat (String) Residual Heat of the Strategy Risk.
  • residual_score (String) Residual Score of the Strategy Risk.
  • score (String) Score of the Strategy Risk.
  • updated_at (String) The timestamp identifying when the risk was last updated.

Nested Schema for strategy_custom_attributes

Optional:

  • id (String) The ID of the custom attribute that this custom attribute value is for
  • value (List of String) The value or values (for multiselect) to set this custom attribute to

Read-Only:

  • term (String) The user defined term used to identify the custom attribute