github.com/databricks/cli@v0.203.0/bundle/tests/variables/env_overrides/databricks.yml (about)

     1  variables:
     2    a:
     3      description: optional variable
     4      default: default-a
     5  
     6    b:
     7      description: required variable
     8  
     9  bundle:
    10    name: test bundle
    11  
    12  workspace:
    13    profile: ${var.a} ${var.b}
    14  
    15  environments:
    16    env-with-single-variable-override:
    17      variables:
    18        b: dev-b
    19  
    20    env-missing-a-required-variable-assignment:
    21      variables:
    22        a: staging-a
    23  
    24    env-with-two-variable-overrides:
    25      variables:
    26        a: prod-a
    27        b: prod-b
    28  
    29    env-using-an-undefined-variable:
    30      variables:
    31        c: prod-c
    32        b: prod-b