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_volume
terraform { backend "azurerm" { resource_group_name = "xxx" storage_account_name = "xxx" container_name = "xxx" key = "xxx" } required_providers { azurerm = { source = "hashicorp/azurerm" version = "4.2.0" } databricks = { source = "databricks/databricks" version = "1.56.0" } } }
A deployment of databricks_volume resource without error.
resource "databricks_external_location" "external" { depends_on = [ azurerm_role_assignment.external_sources ] # name = "dbx-external-sources" name = var.environment == "staging" || var.environment == "production" ? "xxx-${var.environment}" : "xxx" url = format("abfss://%s@%s.dfs.core.windows.net", azurerm_storage_container.external.name, azurerm_storage_account.external_sources.name) credential_name = databricks_storage_credential.external_sources.id owner = databricks_group.uc_admins.display_name comment = "External Location" } resource "databricks_volume" "this" { name = "external_sources" catalog_name = "xxx" schema_name = databricks_schema.external_sources.name volume_type = "EXTERNAL" storage_location = databricks_external_location.external.url comment = "This volume is managed by terraform" }
I don't think so.
This happened twice, but restarting fixed it. I create this Issue just in case. Tell me if it's interesting or not.
Why not...
The text was updated successfully, but these errors were encountered:
databricks_XXX
Add trailing / to url value...
/
url
Sorry, something went wrong.
No branches or pull requests
Configuration
Expected Behavior
A deployment of databricks_volume resource without error.
Actual Behavior
Steps to Reproduce
Terraform and provider versions
Is it a regression?
I don't think so.
Important Factoids
This happened twice, but restarting fixed it. I create this Issue just in case. Tell me if it's interesting or not.
Would you like to implement a fix?
Why not...
The text was updated successfully, but these errors were encountered: