You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a new change, unrelated to this resource, such as adding a new variable, the terraform plan for this resource should show no changes. This is exact same issue identified in #3126 which was closed by mistake.
Actual Behavior
Terraform will perform the following actions:# module.test_task_key_order.databricks_job.this will be updated in-place
~ resource"databricks_job""this" {
id="<redacted>"name="Test_Job"tags={<redacted> }
# (9 unchanged attributes hidden)
~ task {
~ task_key="AA_test"->"ZZ_test"# (6 unchanged attributes hidden)-depends_on {
-task_key="ZZ_test"->null
}
# (2 unchanged blocks hidden)
}
~ task {
~ task_key="ZZ_test"->"AA_test"# (6 unchanged attributes hidden)+depends_on {
+task_key="ZZ_test"
}
# (2 unchanged blocks hidden)
}
# (7 unchanged blocks hidden)
}
Plan:0 to add, 1 to change, 0 to destroy.
Steps to Reproduce
terraform apply
Terraform and provider versions
Terraform v1.9.8
on windows_amd64
+ provider registry.terraform.io/databricks/databricks v1.54.0
Is it a regression?
Not that I know of.
Debug Output
Important Factoids
Would you like to implement a fix?
The text was updated successfully, but these errors were encountered:
Same issue as #3126 which was incorrectly closed. Verified that this issue still exists with provider v1.54.0
Configuration
Expected Behavior
When creating a new change, unrelated to this resource, such as adding a new variable, the terraform plan for this resource should show no changes. This is exact same issue identified in #3126 which was closed by mistake.
Actual Behavior
Steps to Reproduce
terraform apply
Terraform and provider versions
Is it a regression?
Not that I know of.
Debug Output
Important Factoids
Would you like to implement a fix?
The text was updated successfully, but these errors were encountered: