highbond_compliance_requirement (Data Source)
Schema
Required
compliance_regulation_name | String | The name of the compliance regulation |
Optional
compliance_requirement_name | String | The name of the compliance requirement |
id | String | The ID of this resource. |
identifier | String | The identifier of the compliance requirement |
Read-Only
compliance_requirements | List of Object | List of compliance requirement | |||||||||||||||||||||||||||||||||||||||||||||
Nested Schema for `compliance_requirements`Read-Only
| |||||||||||||||||||||||||||||||||||||||||||||||
is_available | Boolean | This flag can be used to check if data source is available or not |
Example Usage
// Search using Compliance Requirement Name
data "highbond_compliance_requirement" "main" {
compliance_regulation_name = "Example_Compliance_Regulation_Name"
compliance_requirement_name = "Example_Compliance_Requirement_Name"
}
// Search using Compliance Requirement Identifier (ID)
data "highbond_compliance_requirement" "main" {
compliance_regulation_name = "Example_Compliance_Regulation_Name"
identifier = "CHAPTER I"
}