mirror of https://github.com/databricks/cli.git
31 lines
1.1 KiB
Cheetah
31 lines
1.1 KiB
Cheetah
# This is a Databricks asset bundle definition for {{.project_name}}.
|
|
# See https://docs.databricks.com/dev-tools/bundles/index.html for documentation.
|
|
bundle:
|
|
name: {{.project_name}}
|
|
|
|
include:
|
|
- resources/*.yml
|
|
|
|
targets:
|
|
dev:
|
|
# The default target uses 'mode: development' to create a development copy.
|
|
# - Deployed resources get prefixed with '[dev my_user_name]'
|
|
# - Any job schedules and triggers are paused by default.
|
|
# See also https://docs.databricks.com/dev-tools/bundles/deployment-modes.html.
|
|
mode: development
|
|
default: true
|
|
workspace:
|
|
host: {{workspace_host}}
|
|
|
|
prod:
|
|
mode: production
|
|
workspace:
|
|
host: {{workspace_host}}
|
|
# We explicitly specify /Workspace/Users/{{user_name}} to make sure we only have a single copy.
|
|
root_path: /Workspace/Users/{{user_name}}/.bundle/${bundle.name}/${bundle.target}
|
|
permissions:
|
|
- {{if is_service_principal}}service_principal{{else}}user{{end}}_name: {{user_name}}
|
|
level: CAN_MANAGE
|
|
run_as:
|
|
{{if is_service_principal}}service_principal{{else}}user{{end}}_name: {{user_name}}
|