databricks-cli/experimental/dbx2dab/templates/databricks.yml.j2

41 lines
1.2 KiB
Plaintext
Raw Normal View History

bundle:
name: {{ bundle_name }}
include:
- "resources/*.yml"
- "conf/*/overrides.yml"
- "conf/*/variables.yml"
variables:
# Variables that are specified as environment variables.
# These are known only at deployment time.
#
# These were directly accessible in DBX configuration.
# This is not possible in bundles for security reasons.
#
# A variable that was previously referred as env["CI_PROJECT_URL"],
# must now be used as ${var.env_ci_project_url} and can be set
# with the environment variable "BUNDLE_VAR_env_ci_project_url".
#
{% for item in env_variables -%}
{{ item }}:
description: "<unknown>"
{% endfor %}
# Variables with known values at deployment time.
# They may define a default below, may be set for each target,
# or may be set at deployment time.
{% for item in var_variables -%}
{{ item }}:
description: "<unknown>"
{% endfor %}
2024-11-11 14:17:41 +00:00
# Variables for fixtures in the workspace that are resolved by name.
# The lookup value is defined below, but can be overridden in the target.
{% for obj in var_lookup_variables -%}
{{ obj["name"] }}:
description: "<unknown>"
lookup:
{{ obj["lookup_type"] }}: {{ obj["lookup_value"] }}
{% endfor %}