mirror of https://github.com/databricks/cli.git
19 lines
249 B
YAML
19 lines
249 B
YAML
|
bundle:
|
||
|
name: variable reference string
|
||
|
|
||
|
variables:
|
||
|
my_var:
|
||
|
description: does not matter
|
||
|
default: "hello"
|
||
|
|
||
|
resources:
|
||
|
jobs:
|
||
|
foo:
|
||
|
name: ${var.my_var}
|
||
|
|
||
|
targets:
|
||
|
staging:
|
||
|
default: true
|
||
|
variables:
|
||
|
my_var: "world"
|