ilir_nuredini
Honored Contributor

Hello ceediii,

The root_path property under individual resource is not supported and it will be ignored. You would need
to specify it on workspace level, example of databricks.yml file with root_path changed:

targets:
  # The 'dev' target, for development purposes. This target is the default.
  develop:
    # We use 'mode: development' to indicate this is a personal development copy:
    # - Deployed resources get prefixed with '[dev my_user_name]'
    # - Any job schedules and triggers are paused by default
    # - The 'development' mode is used for Delta Live Tables pipelines
    # mode: development you get an error if you enable dev mode with root_path specified
    default: true
    workspace:
      host: https://<databricks_host>.net 
      root_path: /Workspace/Shared/<your_folder> #e.g. If you wanna have in shared folder

Hope that helps. Let me know if you need anything else to clarify.

Best,

Ilir 

View solution in original post