Skip to main content

compliance_security_profile

Operations on a compliance_security_profile resource.

Overview

Namecompliance_security_profile
TypeResource
Iddatabricks_account.settings.compliance_security_profile

Fields

NameDatatype
csp_enablement_accountobject
etagstring
setting_namestring

Methods

NameAccessible byRequired ParamsDescription
getSELECTaccount_idGets the compliance security profile setting for new workspaces.
updateUPDATEaccount_idUpdates 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 }}';