Isi
Honored Contributor III

Hey @leandro09 ,

My opinion this kind of error is often related to Terraform state still tracking a resource that was created or managed by another user, and your current user doesn’t have permissions to update or read it.

terraform state list

This will show you all resources currently tracked by Terraform. If you see something like databricks_job.RunBatch, it’s likely still being managed, even if it’s not present in your .tf files.

Also you could pull and inspect the full state file:

terraform state pull > log.json


If you confirm that the job is in the state but shouldn’t be, you can remove it with:

#Example
terraform state rm databricks_job.RunBatch


Hope this helps, 🙂


Isi