-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
900e145
commit a976e1b
Showing
2 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
subcategory: "Settings" | ||
--- | ||
|
||
# databricks_compliance_security_profile_workspace_setting Resource | ||
|
||
-> **Note** This resource could be only used with workspace-level provider! | ||
|
||
The `databricks_compliance_security_profile_workspace_setting` resource allows you to control whether to enable the | ||
compliance security profile for the current workspace. Enabling it on a workspace is permanent. By default, it is | ||
turned off. This setting can NOT be disabled once it is enabled. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
resource "databricks_compliance_security_profile_workspace_setting" "this" { | ||
compliance_security_profile_workspace { | ||
is_enabled = true | ||
compliance_standards = ["HIPAA", "FEDRAMP_MODERATE"] | ||
} | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The resource supports the following arguments: | ||
|
||
* `is_enabled` - (Required) Enable the Compliance Security Profile on the workspace | ||
* `compliance_standards` - (Required) Enable one or more compliance standards on the workspace, e.g. `HIPAA`, `PCI_DSS`, `FEDRAMP_MODERATE` | ||
|
||
## Import | ||
|
||
This resource can be imported by predefined name `global`: | ||
|
||
```bash | ||
terraform import databricks_compliance_security_profile_workspace_setting.this global | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters