Skip to main content
Version: Latest Version (2.9.1)

highbond_mitigation (Resource)

Schema

Required

control_idString The ID of the control
risk_idString The ID of the risk
weightNumber the weight of mitigation. Must be > 0 and less than 100

Optional

force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.

Read-Only

created_atString The timestamp identifying when the mitigation was created
updated_atString 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
}