highbond_compliance_regulation (Resource)
Schema
Required
name | String | The unique name of the compliance regulation |
Optional
available_tags | List of String | List of available tags to be used inside the regulation |
description | String | The detailed description of the regulation |
disclaimer | String | Regulation disclaimer |
external_id | String | An optional identifier |
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | The ID of this resource. |
locked | Boolean | Defines whether regulation is editable or not |
premium | Boolean | Indicates whether content is only available for users who have premium edition subscriptions |
report_disclaimer | String | Report disclaimer |
requirement_disclaimer | String | Requirement disclaimer |
source | String | Source of the regulation. Used for legal reasons |
tags | List of String | List of applied tags. Must use elements from available_tags |
toolkit_preview_name | String | To be used only for toolkit preview name |
Read-Only
created_at | String | The timestamp specifying when the regulation was created |
updated_at | String | The timestamp specifying when the regulation was updated |
Example Usage
resource "highbond_compliance_regulation" "main" {
name = "My regulation250"
description = "Regulation details"
external_id = "RG-1"
source = "Federal Trade Commission"
disclaimer = "Example of disclaimer." // Supported for only root user
report_disclaimer = "Example of disclaimer." // Supported for only root user
requirement_disclaimer = "Example of disclaimer." // Supported for only root user
available_tags = ["foo", "foo1"]
tags = ["foo"]
locked = false // Supported for only root user
premium = false // Supported for only root user
force_updates = true // Create only with force update changes
toolkit_preview_name = "Toolkit preview name for complaince regulation"
}