mirror of https://github.com/databricks/cli.git
Add `uuid` to builtin templates (#2088)
## Changes This is useful to track telemetry associated with the templates and can later be useful for functional usecases as well. Mlops stacks does the same here: https://github.com/databricks/mlops-stacks/pull/185 ## Tests Existing tests.
This commit is contained in:
parent
a0455bcaef
commit
b0c1c23630
|
@ -15,7 +15,8 @@
|
|||
"lock": {
|
||||
"enabled": false
|
||||
}
|
||||
}
|
||||
},
|
||||
"uuid": "<UUID>"
|
||||
},
|
||||
"include": [
|
||||
"resources/project_name_$UNIQUE_PRJ.job.yml",
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
# See https://docs.databricks.com/dev-tools/bundles/index.html for documentation.
|
||||
bundle:
|
||||
name: {{.project_name}}
|
||||
uuid: {{bundle_uuid}}
|
||||
|
||||
include:
|
||||
- resources/*.yml
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
# See https://docs.databricks.com/dev-tools/bundles/index.html for documentation.
|
||||
bundle:
|
||||
name: {{.project_name}}
|
||||
uuid: {{bundle_uuid}}
|
||||
|
||||
include:
|
||||
- resources/*.yml
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
# See https://docs.databricks.com/dev-tools/bundles/index.html for documentation.
|
||||
bundle:
|
||||
name: {{.project_name}}
|
||||
uuid: {{bundle_uuid}}
|
||||
|
||||
include:
|
||||
- resources/*.yml
|
||||
|
|
Loading…
Reference in New Issue