highbond_relate_compliance_requirement (Resource)
Schema
Required
compliance_requirement_id | String | The ID of the requested resource. |
related_compliance_requirement_id | String | The ID of the requested resource. |
relationship_strength | String | Enum: 'equivalent' 'strongly_related' 'moderately_related' 'weakly_related'. The strength of the relationship between the requirements. |
relationship_type | String | Enum: 'support' or 'overlap' . The type of the relationship between the requirements. |
status | String | Enum: 'active' 'inactive'. The status of the related requirement. |
Optional
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | The ID of this resource. |
Example Usage
resource "highbond_relate_compliance_requirement" "main" {
relationship_type = "overlap"
relationship_strength = "strongly_related"
status = "active"
compliance_requirement_id = "416335"
related_compliance_requirement_id = "698382"
}