Skip to content

Group

laktory.models.resources.databricks.Group ¤

Bases: BaseModel, PulumiResource, TerraformResource

Databricks group

ATTRIBUTE DESCRIPTION
acl_principal_id

Identifier for use in databricks_access_control_rule_set, e.g. groups/Some Group.

TYPE: str

allow_cluster_create

This is a field to allow the group to have cluster create privileges. More fine grained permissions could be assigned with databricks.Permissions and cluster_id argument. Everyone without allow_cluster_create argument set, but with permission to use Cluster Policy would be able to create clusters, but within boundaries of that specific policy.

TYPE: bool

allow_instance_pool_create

This is a field to allow the group to have instance pool create privileges. More fine grained permissions could be assigned with databricks.Permissions and instance_pool_id argument.

TYPE: bool

databricks_sql_access

This is a field to allow the group to have access to Databricks SQL feature in User Interface and through databricks_sql_endpoint.

TYPE: bool

display_name

Display name for the group.

TYPE: str

external_id

ID of the group in an external identity provider.

TYPE: str

force

Ignore cannot create group: Group with name X already exists. errors and implicitly import the specific group into IaC state, enforcing entitlements defined in the instance of resource. This functionality is experimental and is designed to simplify corner cases, like Azure Active Directory synchronisation.

TYPE: bool

lookup_existing

Specifications for looking up existing resource. Other attributes will be ignored.

TYPE: GroupLookup

member_ids

A list of all member ids of the group. Can be users, groups or service principals

TYPE: list[str]

workspace_access

When True, the group is allowed to have workspace access

TYPE: bool

Examples:

from laktory import models

d = models.resources.databricks.Group(display_name="role-engineers")

Attributes¤

resource_key property ¤

resource_key

display name or id

additional_core_resources property ¤

additional_core_resources
  • workspace permission assignments

--

laktory.models.resources.databricks.group.GroupLookup ¤

Bases: ResourceLookup

ATTRIBUTE DESCRIPTION
id

Id of the group. Only supported when using Pulumi backend.

TYPE: str

display_name

Display name of the group. Only support when using Terraform backend

TYPE: str