Hi @Greg_c,
You can try with this sctructure:
- In the main databricks.yml
# databricks.yml
bundle:
name: master-bundle
include:
- resources/*.yml
# Other bundle configurations...
In resource directory, create a YAML for each job:
# resources/job1.yml
resources:
jobs:
job1:
name: First Job
tasks:
- task_key: task1
notebook_task:
notebook_path: /path/to/notebook1
# resources/job2.yml
resources:
jobs:
job2:
name: Second Job
tasks:
- task_key: task2
notebook_task:
notebook_path: /path/to/notebook2