Configure verbose audit logs through terraform

fedemgp
New Contributor

Hi everyone,

I was looking into the databricks_workspace_conf Terraform resource to configure Verbose Audit Logs (and avoid changing it through the UI). However, I attempted to apply this configuration and encountered the following error:

Error: cannot create workspace conf: invalid Databricks Workspace configuration

My module configuration was as follows:

resource "databricks_workspace_conf" "this" {
   custom_config = {
     "enableVerboseAuditLogs" : true
   }
 }

I came across a previous thread discussing a similar issue, which led me to a PowerShell script listing the available commands—and it seems that this option is not present.

Would it be possible to enable this configuration through this module in the future?

Thanks!