vuong-nguyen
vuong-nguyen
@tony-farias Any particular reason why they are still on tf v0.12, that is a pretty old version. If they try with a newer tf version, do they still run into...
@jschra Do you have set any expiry date for the obo token (`module.pm_databricks_services.service_principal_token`)
basically what happened is that the obo token expired every 1.5 days, so your `databricks.git` provider will fail to initialise leading to the error message. `cannot read git credential: cannot...
@jschra there is no easy way to do this in just a single Terraform apply. It is fundamental to how Terraform works. The key issue here is that providers need...
@jschra you could try combining [time_rotating](https://registry.terraform.io/providers/hashicorp/time/latest/docs/resources/rotating) with [replace_triggered_by](https://www.terraform.io/language/meta-arguments/lifecycle#replace_triggered_by), so that the token is replaced after 85 days
@jschra this would work if you split the configuration up, and run terraform apply sequentially, as the new token will be available for the provider in the second configuration to...
@m-theisen have you tested this with the latest version of the provider? there was a fix for MLflow model and iirc it applies to all `databricks_permissions` resource
the provider validate the `display_name` to ensure it does not match system groups (admins/users), as you cannot delete it. @nfx would it make sense to still allow this in case...
Isn't this how Terraform reconciles its state, when you're running `terraform import` The model definition here does not have any tags, but the target model has some tags. Terraform correctly...
@arpitjasa-db `suppress_diff` is annotation within our provider to simplify schema definition. https://github.com/databricks/terraform-provider-databricks/blob/master/common/reflect_resource.go#L128 we basically need to implement https://pkg.go.dev/github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema#SchemaDiffSuppressFunc for `databricks_mlflow_model`