vuong-nguyen

Results 106 comments of vuong-nguyen

@youldb for SQL Server, Lakehouse Federation OAuth support is U2M, so you cannot complete this flow in Terraform. It would require support for OAuth M2M, so you'll need to request...

so I found the issue the go struct requires `workspace_id` as a path param https://github.com/databricks/databricks-sdk-go/blob/b5dde685aca9e9c3197b69ff3147bb1d0af071f3/service/settings/model.go#L2396-L2398 so `TfSdkToGoSdkStruct` misses that conversion, which is why the Get call is failing the file...

@Nilsas could you share more details on the error that you are seeing and the TF configuration you are using?

@Nilsas you're mixing up the account-level providers (for metastore and metastore assignment), and workspace-level providers (for storage credentials, grants)

@Nilsas for storage_credential, you're missing metastore_id > [metastore_id](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/storage_credential#metastore_id-1) - (Required for account-level) Unique identifier of the parent Metastore for grants, it explicitly states > Most of Unity Catalog APIs are...

the `aws_iam_role` is created in the same script from my reading of the code? AWS says IAM policies are valid "almost" immediately, although this may be longer, see this [SO...