compliance_security_profile
Operations on a compliance_security_profile
resource.
Overview
Name | compliance_security_profile |
Type | Resource |
Id | databricks_account.settings.compliance_security_profile |
Fields
Name | Datatype |
---|---|
csp_enablement_account | object |
etag | string |
setting_name | string |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | account_id | Gets the compliance security profile setting for new workspaces. |
update | UPDATE | account_id | Updates the value of the compliance security profile setting for new workspaces. |
SELECT
examples
SELECT
csp_enablement_account,
etag,
setting_name
FROM databricks_account.settings.compliance_security_profile
WHERE account_id = '{{ account_id }}';
UPDATE
example
Updates a compliance_security_profile
resource.
/*+ update */
-- replace field1, field2, etc. with the fields you want to update
UPDATE databricks_account.settings.compliance_security_profile
SET field1 = '{{ value1 }}',
field2 = '{{ value2 }}', ...
WHERE account_id = '{{ account_id }}';