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_mws_workspaces
ids
terraform { required_providers { databricks = { source = "databricks/databricks" version = ">= 1.63.0" } } } data "databricks_mws_workspaces" "example" {} output "workspace_ids" { value = data.databricks_mws_workspaces.example.ids } output "workspace_count" { value = length(data.databricks_mws_workspaces.example.ids) }
I'd expect the workspace_count output to be 0
workspace_count
Terraform throws an error: Invalid value for "value" parameter: argument must not be null.
Invalid value for "value" parameter: argument must not be null.
terraform apply
Terraform v1.10.4 on darwin_arm64
no
The additional context here is that I am one of the maintainers of the pulumi-databricks provider: https://github.com/pulumi/pulumi-databricks
There this issue manifests as a null pointer exception in the languages which have this (like C#).
I'd be happy to if you gave me some pointers about setting up tests for this.
The text was updated successfully, but these errors were encountered:
Raised a PR for this: #4414
Let me know if you have any feedback here!
Sorry, something went wrong.
No branches or pull requests
Configuration
Expected Behavior
I'd expect the
workspace_count
output to be 0Actual Behavior
Terraform throws an error:
Invalid value for "value" parameter: argument must not be null.
Steps to Reproduce
terraform apply
Terraform and provider versions
Is it a regression?
no
Important Factoids
The additional context here is that I am one of the maintainers of the pulumi-databricks provider: https://github.com/pulumi/pulumi-databricks
There this issue manifests as a null pointer exception in the languages which have this (like C#).
Would you like to implement a fix?
I'd be happy to if you gave me some pointers about setting up tests for this.
The text was updated successfully, but these errors were encountered: