1. Packages
  2. Azure Classic
  3. API Docs
  4. databricks
  5. WorkspaceCustomerManagedKey

We recommend using Azure Native.

Azure v6.21.0 published on Friday, Mar 7, 2025 by Pulumi

azure.databricks.WorkspaceCustomerManagedKey

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure v6.21.0 published on Friday, Mar 7, 2025 by Pulumi

    Import

    Databrick Workspaces can be imported using the resource id, e.g.

    $ pulumi import azure:databricks/workspaceCustomerManagedKey:WorkspaceCustomerManagedKey workspace1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Databricks/workspaces/workspace1
    

    Create WorkspaceCustomerManagedKey Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new WorkspaceCustomerManagedKey(name: string, args: WorkspaceCustomerManagedKeyArgs, opts?: CustomResourceOptions);
    @overload
    def WorkspaceCustomerManagedKey(resource_name: str,
                                    args: WorkspaceCustomerManagedKeyArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def WorkspaceCustomerManagedKey(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    key_vault_key_id: Optional[str] = None,
                                    workspace_id: Optional[str] = None)
    func NewWorkspaceCustomerManagedKey(ctx *Context, name string, args WorkspaceCustomerManagedKeyArgs, opts ...ResourceOption) (*WorkspaceCustomerManagedKey, error)
    public WorkspaceCustomerManagedKey(string name, WorkspaceCustomerManagedKeyArgs args, CustomResourceOptions? opts = null)
    public WorkspaceCustomerManagedKey(String name, WorkspaceCustomerManagedKeyArgs args)
    public WorkspaceCustomerManagedKey(String name, WorkspaceCustomerManagedKeyArgs args, CustomResourceOptions options)
    
    type: azure:databricks:WorkspaceCustomerManagedKey
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args WorkspaceCustomerManagedKeyArgs
    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 WorkspaceCustomerManagedKeyArgs
    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 WorkspaceCustomerManagedKeyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkspaceCustomerManagedKeyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkspaceCustomerManagedKeyArgs
    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 workspaceCustomerManagedKeyResource = new Azure.DataBricks.WorkspaceCustomerManagedKey("workspaceCustomerManagedKeyResource", new()
    {
        KeyVaultKeyId = "string",
        WorkspaceId = "string",
    });
    
    example, err := databricks.NewWorkspaceCustomerManagedKey(ctx, "workspaceCustomerManagedKeyResource", &databricks.WorkspaceCustomerManagedKeyArgs{
    	KeyVaultKeyId: pulumi.String("string"),
    	WorkspaceId:   pulumi.String("string"),
    })
    
    var workspaceCustomerManagedKeyResource = new WorkspaceCustomerManagedKey("workspaceCustomerManagedKeyResource", WorkspaceCustomerManagedKeyArgs.builder()
        .keyVaultKeyId("string")
        .workspaceId("string")
        .build());
    
    workspace_customer_managed_key_resource = azure.databricks.WorkspaceCustomerManagedKey("workspaceCustomerManagedKeyResource",
        key_vault_key_id="string",
        workspace_id="string")
    
    const workspaceCustomerManagedKeyResource = new azure.databricks.WorkspaceCustomerManagedKey("workspaceCustomerManagedKeyResource", {
        keyVaultKeyId: "string",
        workspaceId: "string",
    });
    
    type: azure:databricks:WorkspaceCustomerManagedKey
    properties:
        keyVaultKeyId: string
        workspaceId: string
    

    WorkspaceCustomerManagedKey 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 WorkspaceCustomerManagedKey resource accepts the following input properties:

    KeyVaultKeyId string
    WorkspaceId string
    The unique identifier of the databricks workspace in Databricks control plane.
    KeyVaultKeyId string
    WorkspaceId string
    The unique identifier of the databricks workspace in Databricks control plane.
    keyVaultKeyId String
    workspaceId String
    The unique identifier of the databricks workspace in Databricks control plane.
    keyVaultKeyId string
    workspaceId string
    The unique identifier of the databricks workspace in Databricks control plane.
    key_vault_key_id str
    workspace_id str
    The unique identifier of the databricks workspace in Databricks control plane.
    keyVaultKeyId String
    workspaceId String
    The unique identifier of the databricks workspace in Databricks control plane.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WorkspaceCustomerManagedKey resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing WorkspaceCustomerManagedKey Resource

    Get an existing WorkspaceCustomerManagedKey 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?: WorkspaceCustomerManagedKeyState, opts?: CustomResourceOptions): WorkspaceCustomerManagedKey
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            key_vault_key_id: Optional[str] = None,
            workspace_id: Optional[str] = None) -> WorkspaceCustomerManagedKey
    func GetWorkspaceCustomerManagedKey(ctx *Context, name string, id IDInput, state *WorkspaceCustomerManagedKeyState, opts ...ResourceOption) (*WorkspaceCustomerManagedKey, error)
    public static WorkspaceCustomerManagedKey Get(string name, Input<string> id, WorkspaceCustomerManagedKeyState? state, CustomResourceOptions? opts = null)
    public static WorkspaceCustomerManagedKey get(String name, Output<String> id, WorkspaceCustomerManagedKeyState state, CustomResourceOptions options)
    resources:  _:    type: azure:databricks:WorkspaceCustomerManagedKey    get:      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.
    The following state arguments are supported:
    KeyVaultKeyId string
    WorkspaceId string
    The unique identifier of the databricks workspace in Databricks control plane.
    KeyVaultKeyId string
    WorkspaceId string
    The unique identifier of the databricks workspace in Databricks control plane.
    keyVaultKeyId String
    workspaceId String
    The unique identifier of the databricks workspace in Databricks control plane.
    keyVaultKeyId string
    workspaceId string
    The unique identifier of the databricks workspace in Databricks control plane.
    key_vault_key_id str
    workspace_id str
    The unique identifier of the databricks workspace in Databricks control plane.
    keyVaultKeyId String
    workspaceId String
    The unique identifier of the databricks workspace in Databricks control plane.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure v6.21.0 published on Friday, Mar 7, 2025 by Pulumi