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
Using a provider of
provider "databricks" { profile = "ACCOUNT-<ID>" }
This doesn't create:
resource "databricks_mws_workspaces" "this" { provider = databricks account_id = var.databricks_account_id aws_region = var.region workspace_name = local.prefix credentials_id = databricks_mws_credentials.this.credentials_id storage_configuration_id = databricks_mws_storage_configurations.this.storage_configuration_id network_id = databricks_mws_networks.this.network_id depends_on = [ time_sleep.wait, databricks_mws_storage_configurations.this, databricks_mws_credentials.this, databricks_mws_networks.this ] token { comment = "Terraform" } }
Unless the token block is removed (which requires you to manually destroy the workspace and prune the terraform state first). The error is:
default auth: cannot configure default credentials
Logging my findings. To reproduce try to set this up using the modern OAuth login, latest version of Databricks.
Happy hunting!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using a provider of
This doesn't create:
Unless the token block is removed (which requires you to manually destroy the workspace and prune the terraform state first). The error is:
Logging my findings. To reproduce try to set this up using the modern OAuth login, latest version of Databricks.
Happy hunting!
The text was updated successfully, but these errors were encountered: