highbond_strategy_risk (Resource)
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. | |||||||||
id | String | The ID of this resource. | |||||||||
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 | |||||||||
Nested Schema for `strategy_custom_attributes`Optional
Read-Only
|
Read-Only
created_at | String | The timestamp identifying when the risk was created. |
heat | String | Heat of the Strategy Risk. |
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. |
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"
}