You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a surprising feature.
Up to version 0.239.0 there was a resolution but due to one round it
would leave config in a broken state:
```
~/work/cli/acceptance/bundle/variables/var_in_var % ./databricks-238 bundle validate -o json -t target_x | jq .variables.final
{
"default": "${var.foo_x}",
"value": "${var.foo_x}"
}
```
After 0.239 thanks to multiple rounds of evaluation it is not now
resolved fully, but we're not sure if we want to support this.
```
~/work/cli/acceptance/bundle/variables/var_in_var % ./databricks-239 bundle validate -o json -t target_x | jq .variables.final
{
"default": "hello from foo x",
"value": "hello from foo x"
}
```
---------
Co-authored-by: Pieter Noordhuis <pieter.noordhuis@databricks.com>
0 commit comments