camilo-s
camilo-s
### Configuration ```hcl data "databricks_group" "users" { display_name = "users" } resource "databricks_entitlements" "entitlements_users" { group_id = data.databricks_group.users.id databricks_sql_access = false workspace_access = true } ``` ### Expected Behavior Entitlements...
**Is your feature request related to a problem? Please describe.** The `DryRun` switch is great to do some preliminary testing prior to actual deployment. However, it stops `Publish-AdfV2FromJson` short of...
Hi, I'm trying to get a Pandas dataframe including observation attribute `OBS_FLAG` from the `ESTAT` source by setting the `attributes` parameter to 'o' at the `write_dataset` method. However, the method...
[Enter feedback here] According to the documentation, it's possible to select a Service Principal as a grantee for permissions on a SQL query. However, the dropdown in the Share menu...
When trying to create an external location with a service principal, which is set _indirectly_ as owner of the external location through a group membership (i.e. the group is the...
I'm unable to enable account-level groups at the workspace level in our Azure Databricks deployment. Context: - I've configured SCIM provisioning using Azure AD according to the [documentation](https://learn.microsoft.com/en-us/azure/databricks/administration-guide/users-groups/scim/aad). - I've...
### Configuration ```hcl terraform { required_providers { databricks = { configuration_aliases = [ databricks.account, databricks.default ] source = "databricks/databricks" } } } resource "databricks_metastore_assignment" "this" { metastore_id = var.metastore_id workspace_id...
### Configuration ```hcl terraform { required_providers { databricks = { configuration_aliases = [databricks.account, databricks.default] source = "databricks/databricks" } } } data "databricks_group" "admin" { display_name = var.group_name provider = databricks.account...
### Configuration ```hcl terraform { required_providers { databricks = { source = "databricks/databricks" } } } locals { entra_id_groups = { platform = "" dsc = "" bi = ""...
Currently this property is just carried along from the corresponding Repository property of the REST API (see e.g. https://learn.microsoft.com/en-us/rest/api/azure/devops/git/repositories/update?view=azure-devops-rest-7.2&tabs=HTTP#request-body) This makes it impossible to leverage the Azure CLIs authentication flows...