highbond_mitigation (Resource)
Schema
Required
control_id | String | The ID of the control |
risk_id | String | The ID of the risk |
weight | Number | the weight of mitigation. Must be > 0 and less than 100 |
Optional
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | The ID of this resource. |
Read-Only
created_at | String | The timestamp identifying when the mitigation was created |
updated_at | String | The timestamp identifying when the mitigation was last updated |
Example Usage
resource "highbond_mitigation" "main" {
control_id = highbond_control.main.id
risk_id = highbond_risk.main.id
weight = 100
force_updates = true // Create only with force update changes
}