We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
databricks_dashboard
resource "databricks_dashboard" "dashboard" { display_name = "xxx" warehouse_id = databricks_sql_endpoint.xyz.id serialized_dashboard = {} embed_credentials = false parent_path = "/Shared/Dashboards" }
Executing the above (with legitimate values), returns the following error:
The docs specifically say the folder will be created if it does not exist but seems like it isn't the case here.
I should not be getting a Error: cannot create dashboard: Path (/Shared/Dashboards) doesn't exist. error and the folder should be created.
Error: cannot create dashboard: Path (/Shared/Dashboards) doesn't exist.
The text was updated successfully, but these errors were encountered:
It was fixed by #3778 - upgrade to at least 1.51.0
Sorry, something went wrong.
Ah, we are a few versions behind. Thanks, rookie mistake
No branches or pull requests
Configuration
Terraform configuraton:
resource "databricks_dashboard" "dashboard" {
display_name = "xxx"
warehouse_id = databricks_sql_endpoint.xyz.id
serialized_dashboard = {}
embed_credentials = false
parent_path = "/Shared/Dashboards"
}
Executing the above (with legitimate values), returns the following error:
The docs specifically say the folder will be created if it does not exist but seems like it isn't the case here.
Expected Behavior
I should not be getting a
Error: cannot create dashboard: Path (/Shared/Dashboards) doesn't exist.
error and the folder should be created.The text was updated successfully, but these errors were encountered: