published on Tuesday, Sep 8, 2026 by Pulumi
published on Tuesday, Sep 8, 2026 by Pulumi
Manages the direct assignment of a principal to the workspace, along with the entitlements that assignment grants, using a workspace-scoped provider. Creating the resource assigns the principal; deleting it removes the assignment. entitlements is the only updatable field.
Example Usage
Example usage:
Assigns a principal to the workspace with a set of entitlements, using a
workspace-scoped provider (the workspace is taken from the provider context, so
only principalId identifies the assignment). entitlements is the set
granted directly on it (at least one is required). entitlements is the only
updatable field — edit the list and re-apply to update in place. Changing
principalId replaces the assignment.
import * as pulumi from "@pulumi/pulumi";
import * as databricks from "@pulumi/databricks";
const _this = new databricks.WorkspaceIamWorkspaceAssignmentV2("this", {
principalId: "987654321",
entitlements: ["WORKSPACE_ACCESS"],
});
import pulumi
import pulumi_databricks as databricks
this = databricks.WorkspaceIamWorkspaceAssignmentV2("this",
principal_id="987654321",
entitlements=["WORKSPACE_ACCESS"])
package main
import (
"github.com/pulumi/pulumi-databricks/sdk/go/databricks"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := databricks.NewWorkspaceIamWorkspaceAssignmentV2(ctx, "this", &databricks.WorkspaceIamWorkspaceAssignmentV2Args{
PrincipalId: pulumi.String("987654321"),
Entitlements: pulumi.StringArray{
pulumi.String("WORKSPACE_ACCESS"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Databricks = Pulumi.Databricks;
return await Deployment.RunAsync(() =>
{
var @this = new Databricks.WorkspaceIamWorkspaceAssignmentV2("this", new()
{
PrincipalId = "987654321",
Entitlements = new[]
{
"WORKSPACE_ACCESS",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.databricks.WorkspaceIamWorkspaceAssignmentV2;
import com.pulumi.databricks.WorkspaceIamWorkspaceAssignmentV2Args;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var this_ = new WorkspaceIamWorkspaceAssignmentV2("this", WorkspaceIamWorkspaceAssignmentV2Args.builder()
.principalId("987654321")
.entitlements("WORKSPACE_ACCESS")
.build());
}
}
resources:
this:
type: databricks:WorkspaceIamWorkspaceAssignmentV2
properties:
principalId: 9.87654321e+08
entitlements:
- WORKSPACE_ACCESS
pulumi {
required_providers {
databricks = {
source = "pulumi/databricks"
}
}
}
resource "databricks_workspaceiamworkspaceassignmentv2" "this" {
principal_id = 987654321
entitlements = ["WORKSPACE_ACCESS"]
}
Create WorkspaceIamWorkspaceAssignmentV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkspaceIamWorkspaceAssignmentV2(name: string, args: WorkspaceIamWorkspaceAssignmentV2Args, opts?: CustomResourceOptions);@overload
def WorkspaceIamWorkspaceAssignmentV2(resource_name: str,
args: WorkspaceIamWorkspaceAssignmentV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def WorkspaceIamWorkspaceAssignmentV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
principal_id: Optional[str] = None,
entitlements: Optional[Sequence[str]] = None,
provider_config: Optional[WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs] = None,
workspace_id: Optional[str] = None)func NewWorkspaceIamWorkspaceAssignmentV2(ctx *Context, name string, args WorkspaceIamWorkspaceAssignmentV2Args, opts ...ResourceOption) (*WorkspaceIamWorkspaceAssignmentV2, error)public WorkspaceIamWorkspaceAssignmentV2(string name, WorkspaceIamWorkspaceAssignmentV2Args args, CustomResourceOptions? opts = null)
public WorkspaceIamWorkspaceAssignmentV2(String name, WorkspaceIamWorkspaceAssignmentV2Args args)
public WorkspaceIamWorkspaceAssignmentV2(String name, WorkspaceIamWorkspaceAssignmentV2Args args, CustomResourceOptions options)
type: databricks:WorkspaceIamWorkspaceAssignmentV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "databricks_workspace_iam_workspace_assignment_v2" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args WorkspaceIamWorkspaceAssignmentV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args WorkspaceIamWorkspaceAssignmentV2Args
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args WorkspaceIamWorkspaceAssignmentV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceIamWorkspaceAssignmentV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspaceIamWorkspaceAssignmentV2Args
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var workspaceIamWorkspaceAssignmentV2Resource = new Databricks.WorkspaceIamWorkspaceAssignmentV2("workspaceIamWorkspaceAssignmentV2Resource", new()
{
PrincipalId = "string",
Entitlements = new[]
{
"string",
},
ProviderConfig = new Databricks.Inputs.WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs
{
WorkspaceId = "string",
},
WorkspaceId = "string",
});
example, err := databricks.NewWorkspaceIamWorkspaceAssignmentV2(ctx, "workspaceIamWorkspaceAssignmentV2Resource", &databricks.WorkspaceIamWorkspaceAssignmentV2Args{
PrincipalId: pulumi.String("string"),
Entitlements: pulumi.StringArray{
pulumi.String("string"),
},
ProviderConfig: &databricks.WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs{
WorkspaceId: pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
})
resource "databricks_workspace_iam_workspace_assignment_v2" "workspaceIamWorkspaceAssignmentV2Resource" {
lifecycle {
create_before_destroy = true
}
principal_id = "string"
entitlements = ["string"]
provider_config = {
workspace_id = "string"
}
workspace_id = "string"
}
var workspaceIamWorkspaceAssignmentV2Resource = new WorkspaceIamWorkspaceAssignmentV2("workspaceIamWorkspaceAssignmentV2Resource", WorkspaceIamWorkspaceAssignmentV2Args.builder()
.principalId("string")
.entitlements("string")
.providerConfig(WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs.builder()
.workspaceId("string")
.build())
.workspaceId("string")
.build());
workspace_iam_workspace_assignment_v2_resource = databricks.WorkspaceIamWorkspaceAssignmentV2("workspaceIamWorkspaceAssignmentV2Resource",
principal_id="string",
entitlements=["string"],
provider_config={
"workspace_id": "string",
},
workspace_id="string")
const workspaceIamWorkspaceAssignmentV2Resource = new databricks.WorkspaceIamWorkspaceAssignmentV2("workspaceIamWorkspaceAssignmentV2Resource", {
principalId: "string",
entitlements: ["string"],
providerConfig: {
workspaceId: "string",
},
workspaceId: "string",
});
type: databricks:WorkspaceIamWorkspaceAssignmentV2
properties:
entitlements:
- string
principalId: string
providerConfig:
workspaceId: string
workspaceId: string
WorkspaceIamWorkspaceAssignmentV2 Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The WorkspaceIamWorkspaceAssignmentV2 resource accepts the following input properties:
- Principal
Id string - The internal ID of the principal (user/sp/group) in Databricks
- Entitlements List<string>
- Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
- Provider
Config WorkspaceIam Workspace Assignment V2Provider Config - Configure the provider for management through account provider.
- Workspace
Id string - (integer) - The workspace ID where the principal is assigned
- Principal
Id string - The internal ID of the principal (user/sp/group) in Databricks
- Entitlements []string
- Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
- Provider
Config WorkspaceIam Workspace Assignment V2Provider Config Args - Configure the provider for management through account provider.
- Workspace
Id string - (integer) - The workspace ID where the principal is assigned
- principal_
id string - The internal ID of the principal (user/sp/group) in Databricks
- entitlements list(string)
- Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
- provider_
config object - Configure the provider for management through account provider.
- workspace_
id string - (integer) - The workspace ID where the principal is assigned
- principal
Id String - The internal ID of the principal (user/sp/group) in Databricks
- entitlements List<String>
- Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
- provider
Config WorkspaceIam Workspace Assignment V2Provider Config - Configure the provider for management through account provider.
- workspace
Id String - (integer) - The workspace ID where the principal is assigned
- principal
Id string - The internal ID of the principal (user/sp/group) in Databricks
- entitlements string[]
- Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
- provider
Config WorkspaceIam Workspace Assignment V2Provider Config - Configure the provider for management through account provider.
- workspace
Id string - (integer) - The workspace ID where the principal is assigned
- principal_
id str - The internal ID of the principal (user/sp/group) in Databricks
- entitlements Sequence[str]
- Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
- provider_
config WorkspaceIam Workspace Assignment V2Provider Config Args - Configure the provider for management through account provider.
- workspace_
id str - (integer) - The workspace ID where the principal is assigned
- principal
Id String - The internal ID of the principal (user/sp/group) in Databricks
- entitlements List<String>
- Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
- provider
Config Property Map - Configure the provider for management through account provider.
- workspace
Id String - (integer) - The workspace ID where the principal is assigned
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkspaceIamWorkspaceAssignmentV2 resource produces the following output properties:
- Account
Id string - (string) - The account ID parent of the workspace where the principal is assigned
- Effective
Entitlements List<string> - (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
- Id string
- The provider-assigned unique ID for this managed resource.
- Principal
Type string - (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are:
GROUP,SERVICE_PRINCIPAL,USER
- Account
Id string - (string) - The account ID parent of the workspace where the principal is assigned
- Effective
Entitlements []string - (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
- Id string
- The provider-assigned unique ID for this managed resource.
- Principal
Type string - (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are:
GROUP,SERVICE_PRINCIPAL,USER
- account_
id string - (string) - The account ID parent of the workspace where the principal is assigned
- effective_
entitlements list(string) - (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
- id string
- The provider-assigned unique ID for this managed resource.
- principal_
type string - (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are:
GROUP,SERVICE_PRINCIPAL,USER
- account
Id String - (string) - The account ID parent of the workspace where the principal is assigned
- effective
Entitlements List<String> - (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
- id String
- The provider-assigned unique ID for this managed resource.
- principal
Type String - (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are:
GROUP,SERVICE_PRINCIPAL,USER
- account
Id string - (string) - The account ID parent of the workspace where the principal is assigned
- effective
Entitlements string[] - (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
- id string
- The provider-assigned unique ID for this managed resource.
- principal
Type string - (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are:
GROUP,SERVICE_PRINCIPAL,USER
- account_
id str - (string) - The account ID parent of the workspace where the principal is assigned
- effective_
entitlements Sequence[str] - (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
- id str
- The provider-assigned unique ID for this managed resource.
- principal_
type str - (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are:
GROUP,SERVICE_PRINCIPAL,USER
- account
Id String - (string) - The account ID parent of the workspace where the principal is assigned
- effective
Entitlements List<String> - (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
- id String
- The provider-assigned unique ID for this managed resource.
- principal
Type String - (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are:
GROUP,SERVICE_PRINCIPAL,USER
Look up Existing WorkspaceIamWorkspaceAssignmentV2 Resource
Get an existing WorkspaceIamWorkspaceAssignmentV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: WorkspaceIamWorkspaceAssignmentV2State, opts?: CustomResourceOptions): WorkspaceIamWorkspaceAssignmentV2@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
effective_entitlements: Optional[Sequence[str]] = None,
entitlements: Optional[Sequence[str]] = None,
principal_id: Optional[str] = None,
principal_type: Optional[str] = None,
provider_config: Optional[WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs] = None,
workspace_id: Optional[str] = None) -> WorkspaceIamWorkspaceAssignmentV2func GetWorkspaceIamWorkspaceAssignmentV2(ctx *Context, name string, id IDInput, state *WorkspaceIamWorkspaceAssignmentV2State, opts ...ResourceOption) (*WorkspaceIamWorkspaceAssignmentV2, error)public static WorkspaceIamWorkspaceAssignmentV2 Get(string name, Input<string> id, WorkspaceIamWorkspaceAssignmentV2State? state, CustomResourceOptions? opts = null)public static WorkspaceIamWorkspaceAssignmentV2 get(String name, Output<String> id, WorkspaceIamWorkspaceAssignmentV2State state, CustomResourceOptions options)resources: _: type: databricks:WorkspaceIamWorkspaceAssignmentV2 get: id: ${id}import {
to = databricks_workspace_iam_workspace_assignment_v2.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Id string - (string) - The account ID parent of the workspace where the principal is assigned
- Effective
Entitlements List<string> - (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
- Entitlements List<string>
- Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
- Principal
Id string - The internal ID of the principal (user/sp/group) in Databricks
- Principal
Type string - (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are:
GROUP,SERVICE_PRINCIPAL,USER - Provider
Config WorkspaceIam Workspace Assignment V2Provider Config - Configure the provider for management through account provider.
- Workspace
Id string - (integer) - The workspace ID where the principal is assigned
- Account
Id string - (string) - The account ID parent of the workspace where the principal is assigned
- Effective
Entitlements []string - (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
- Entitlements []string
- Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
- Principal
Id string - The internal ID of the principal (user/sp/group) in Databricks
- Principal
Type string - (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are:
GROUP,SERVICE_PRINCIPAL,USER - Provider
Config WorkspaceIam Workspace Assignment V2Provider Config Args - Configure the provider for management through account provider.
- Workspace
Id string - (integer) - The workspace ID where the principal is assigned
- account_
id string - (string) - The account ID parent of the workspace where the principal is assigned
- effective_
entitlements list(string) - (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
- entitlements list(string)
- Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
- principal_
id string - The internal ID of the principal (user/sp/group) in Databricks
- principal_
type string - (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are:
GROUP,SERVICE_PRINCIPAL,USER - provider_
config object - Configure the provider for management through account provider.
- workspace_
id string - (integer) - The workspace ID where the principal is assigned
- account
Id String - (string) - The account ID parent of the workspace where the principal is assigned
- effective
Entitlements List<String> - (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
- entitlements List<String>
- Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
- principal
Id String - The internal ID of the principal (user/sp/group) in Databricks
- principal
Type String - (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are:
GROUP,SERVICE_PRINCIPAL,USER - provider
Config WorkspaceIam Workspace Assignment V2Provider Config - Configure the provider for management through account provider.
- workspace
Id String - (integer) - The workspace ID where the principal is assigned
- account
Id string - (string) - The account ID parent of the workspace where the principal is assigned
- effective
Entitlements string[] - (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
- entitlements string[]
- Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
- principal
Id string - The internal ID of the principal (user/sp/group) in Databricks
- principal
Type string - (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are:
GROUP,SERVICE_PRINCIPAL,USER - provider
Config WorkspaceIam Workspace Assignment V2Provider Config - Configure the provider for management through account provider.
- workspace
Id string - (integer) - The workspace ID where the principal is assigned
- account_
id str - (string) - The account ID parent of the workspace where the principal is assigned
- effective_
entitlements Sequence[str] - (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
- entitlements Sequence[str]
- Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
- principal_
id str - The internal ID of the principal (user/sp/group) in Databricks
- principal_
type str - (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are:
GROUP,SERVICE_PRINCIPAL,USER - provider_
config WorkspaceIam Workspace Assignment V2Provider Config Args - Configure the provider for management through account provider.
- workspace_
id str - (integer) - The workspace ID where the principal is assigned
- account
Id String - (string) - The account ID parent of the workspace where the principal is assigned
- effective
Entitlements List<String> - (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
- entitlements List<String>
- Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
- principal
Id String - The internal ID of the principal (user/sp/group) in Databricks
- principal
Type String - (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are:
GROUP,SERVICE_PRINCIPAL,USER - provider
Config Property Map - Configure the provider for management through account provider.
- workspace
Id String - (integer) - The workspace ID where the principal is assigned
Supporting Types
WorkspaceIamWorkspaceAssignmentV2ProviderConfig, WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs
- Workspace
Id string - (integer) - The workspace ID where the principal is assigned
- Workspace
Id string - (integer) - The workspace ID where the principal is assigned
- workspace_
id string - (integer) - The workspace ID where the principal is assigned
- workspace
Id String - (integer) - The workspace ID where the principal is assigned
- workspace
Id string - (integer) - The workspace ID where the principal is assigned
- workspace_
id str - (integer) - The workspace ID where the principal is assigned
- workspace
Id String - (integer) - The workspace ID where the principal is assigned
Package Details
- Repository
- databricks pulumi/pulumi-databricks
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
databricksTerraform Provider.
published on Tuesday, Sep 8, 2026 by Pulumi