mirror of https://github.com/databricks/cli.git
54 lines
1.3 KiB
Plaintext
54 lines
1.3 KiB
Plaintext
|
|
>>> errcode [CLI] bundle validate -o json
|
|
Warning: Variable interpolation is not supported for fields that configure authentication
|
|
at workspace.host
|
|
in databricks.yml:10:9
|
|
|
|
Interpolation is not supported for the field workspace.host. Please set
|
|
the DATABRICKS_HOST environment variable if you wish to configure this field at runtime.
|
|
|
|
Error: failed during request visitor: parse "https://${var.host}": invalid character "{" in host name
|
|
|
|
{
|
|
"bundle": {
|
|
"environment": "default",
|
|
"name": "host",
|
|
"target": "default"
|
|
},
|
|
"sync": {
|
|
"paths": [
|
|
"."
|
|
]
|
|
},
|
|
"targets": null,
|
|
"variables": {
|
|
"host": {
|
|
"default": "https://nonexistent123.staging.cloud.databricks.com"
|
|
}
|
|
},
|
|
"workspace": {
|
|
"host": "${var.host}"
|
|
}
|
|
}
|
|
|
|
Exit code: 1
|
|
|
|
>>> errcode [CLI] bundle validate
|
|
Warning: Variable interpolation is not supported for fields that configure authentication
|
|
at workspace.host
|
|
in databricks.yml:10:9
|
|
|
|
Interpolation is not supported for the field workspace.host. Please set
|
|
the DATABRICKS_HOST environment variable if you wish to configure this field at runtime.
|
|
|
|
Error: failed during request visitor: parse "https://${var.host}": invalid character "{" in host name
|
|
|
|
Name: host
|
|
Target: default
|
|
Workspace:
|
|
Host: ${var.host}
|
|
|
|
Found 1 error and 1 warning
|
|
|
|
Exit code: 1
|