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
A played a bit with terraform yesterday evening, and I have an issue, what I cannot solve:
Terraform databricks provider version is 1.51.0
I would like to create a MANAGED volume type
In the plan there is an EXTERNAL volume_type
this is the configuration:
databricks_workloads_volumes = [ { storage_directory_name = "leaf" schema_ref = "schema_ref" volume_type = "MANAGED" } ]
this is the output:
+ resource "databricks_volume" "volumes" { + catalog_name = "catalog_name" + comment = "volume connected to abfss://[email protected]/leaf" + id = (known after apply) + name = "leaf" + owner = (known after apply) + schema_name = "schema_name" + storage_location = "abfss://[email protected]/leaf" + volume_path = (known after apply) + volume_type = "EXTERNAL" }
1.51.0
The text was updated successfully, but these errors were encountered:
If you specify storage_location then the volume is external, not managed
storage_location
Sorry, something went wrong.
but I did not specified storage location as you see in my request:
this is incomplete code - show the code where databricks_volume resource is defined
No branches or pull requests
A played a bit with terraform yesterday evening, and I have an issue, what I cannot solve:
Configuration
Expected Behavior
I would like to create a MANAGED volume type
Actual Behavior
In the plan there is an EXTERNAL volume_type
Steps to Reproduce
this is the configuration:
Terraform and provider versions
1.51.0
The text was updated successfully, but these errors were encountered: