Skip to main content
Version: Latest Version (2.9.1)

highbond_strategy_risk (Resource)

Schema

Required

titleString The title of the risk.

Optional

descriptionString A detailed description of the risk.
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.
statusString Current status of the risk (current column on the dashboard). Allowed values are 'assess', 'accepted', 'continuously_audit', 'mitigated'
strategy_custom_attributesBlock List An array of custom attributes defined by the user that are available on this object
Nested Schema for `strategy_custom_attributes`

Optional

idString The ID of the custom attribute that this custom attribute value is for
valueList of String The value or values (for multiselect) to set this custom attribute to

Read-Only

termString The user defined term used to identify the custom attribute

Read-Only

created_atString The timestamp identifying when the risk was created.
heatString Heat of the Strategy Risk.
residual_heatString Residual Heat of the Strategy Risk.
residual_scoreString Residual Score of the Strategy Risk.
scoreString Score of the Strategy Risk.
updated_atString The timestamp identifying when the risk was last updated.

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"
}