Posted inDatabricks / LinkedIn

New terraform resource block called databricks_workspace_setting_v2

When managing the Databricks platform, I always prefer code over click-ops. But in the last few years I always found it hard to find the #Terraform code to do so if it already exist at all.

Last week, I came upon a new terraform resource block called databricks_workspace_setting_v2. With this you can finally set settings like sql_results_download via code:

resource “databricks_workspace_setting_v2” “this” {
    name= “sql_results_download”
    boolean_val={
        value=false
    }
}

For detailed information on how to use the module see here: databricks_workspace_setting_v2 | Resources | databricks/databricks | Terraform | Terraform Registry

Next to that I Also like that you can use it for things where you needed separate resources for, like disable_legacy_dbfs_setting. With as big benefit that it also overwrites the setting again if an admin changes it via the UI portal.

For the original LinkedIn post click here.

My name is Remco Hooijer, and I’m an Azure Cloud Solution Architect with over 15 years of experience in the IT industry. I’ve worked with a wide range of clients and projects, from small startups to large enterprises, helping them to design, implement, and optimize their cloud solutions.

As a Microsoft Certified Trainer, I’m passionate about sharing my knowledge and expertise with others. I believe that education and training are essential to staying up-to-date with the latest technologies and best practices, and I love helping others to develop their skills and achieve their goals.

Whether you’re looking to migrate to the cloud, optimize your existing infrastructure, or develop new applications and services, I’m here to help. With my extensive experience in Azure and other cloud technologies, I can provide expert guidance and support to help you achieve your business objectives.

Leave a Reply

Your email address will not be published. Required fields are marked *