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

We recommend using Azure Native.

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

azure.databricks.WorkspaceRootDbfsCustomerManagedKey

Explore with Pulumi AI

Manages a Customer Managed Key for the Databricks Workspaces Root Databricks File System(DBFS)

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const current = azure.core.getClientConfig({});
const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleWorkspace = new azure.databricks.Workspace("example", {
    name: "databricks-test",
    resourceGroupName: example.name,
    location: example.location,
    sku: "premium",
    customerManagedKeyEnabled: true,
    tags: {
        Environment: "Production",
    },
});
const exampleKeyVault = new azure.keyvault.KeyVault("example", {
    name: "examplekeyvault",
    location: example.location,
    resourceGroupName: example.name,
    tenantId: current.then(current => current.tenantId),
    skuName: "premium",
    purgeProtectionEnabled: true,
    softDeleteRetentionDays: 7,
});
const terraform = new azure.keyvault.AccessPolicy("terraform", {
    keyVaultId: exampleKeyVault.id,
    tenantId: exampleKeyVault.tenantId,
    objectId: current.then(current => current.objectId),
    keyPermissions: [
        "Create",
        "Delete",
        "Get",
        "Purge",
        "Recover",
        "Update",
        "List",
        "Decrypt",
        "Sign",
        "GetRotationPolicy",
    ],
});
const exampleKey = new azure.keyvault.Key("example", {
    name: "example-certificate",
    keyVaultId: exampleKeyVault.id,
    keyType: "RSA",
    keySize: 2048,
    keyOpts: [
        "decrypt",
        "encrypt",
        "sign",
        "unwrapKey",
        "verify",
        "wrapKey",
    ],
}, {
    dependsOn: [terraform],
});
const databricks = new azure.keyvault.AccessPolicy("databricks", {
    keyVaultId: exampleKeyVault.id,
    tenantId: exampleWorkspace.storageAccountIdentities.apply(storageAccountIdentities => storageAccountIdentities[0].tenantId),
    objectId: exampleWorkspace.storageAccountIdentities.apply(storageAccountIdentities => storageAccountIdentities[0].principalId),
    keyPermissions: [
        "Create",
        "Delete",
        "Get",
        "Purge",
        "Recover",
        "Update",
        "List",
        "Decrypt",
        "Sign",
    ],
}, {
    dependsOn: [exampleWorkspace],
});
const exampleWorkspaceRootDbfsCustomerManagedKey = new azure.databricks.WorkspaceRootDbfsCustomerManagedKey("example", {
    workspaceId: exampleWorkspace.id,
    keyVaultKeyId: exampleKey.id,
}, {
    dependsOn: [databricks],
});
Copy
import pulumi
import pulumi_azure as azure

current = azure.core.get_client_config()
example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_workspace = azure.databricks.Workspace("example",
    name="databricks-test",
    resource_group_name=example.name,
    location=example.location,
    sku="premium",
    customer_managed_key_enabled=True,
    tags={
        "Environment": "Production",
    })
example_key_vault = azure.keyvault.KeyVault("example",
    name="examplekeyvault",
    location=example.location,
    resource_group_name=example.name,
    tenant_id=current.tenant_id,
    sku_name="premium",
    purge_protection_enabled=True,
    soft_delete_retention_days=7)
terraform = azure.keyvault.AccessPolicy("terraform",
    key_vault_id=example_key_vault.id,
    tenant_id=example_key_vault.tenant_id,
    object_id=current.object_id,
    key_permissions=[
        "Create",
        "Delete",
        "Get",
        "Purge",
        "Recover",
        "Update",
        "List",
        "Decrypt",
        "Sign",
        "GetRotationPolicy",
    ])
example_key = azure.keyvault.Key("example",
    name="example-certificate",
    key_vault_id=example_key_vault.id,
    key_type="RSA",
    key_size=2048,
    key_opts=[
        "decrypt",
        "encrypt",
        "sign",
        "unwrapKey",
        "verify",
        "wrapKey",
    ],
    opts = pulumi.ResourceOptions(depends_on=[terraform]))
databricks = azure.keyvault.AccessPolicy("databricks",
    key_vault_id=example_key_vault.id,
    tenant_id=example_workspace.storage_account_identities[0].tenant_id,
    object_id=example_workspace.storage_account_identities[0].principal_id,
    key_permissions=[
        "Create",
        "Delete",
        "Get",
        "Purge",
        "Recover",
        "Update",
        "List",
        "Decrypt",
        "Sign",
    ],
    opts = pulumi.ResourceOptions(depends_on=[example_workspace]))
example_workspace_root_dbfs_customer_managed_key = azure.databricks.WorkspaceRootDbfsCustomerManagedKey("example",
    workspace_id=example_workspace.id,
    key_vault_key_id=example_key.id,
    opts = pulumi.ResourceOptions(depends_on=[databricks]))
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/databricks"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/keyvault"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		current, err := core.GetClientConfig(ctx, map[string]interface{}{}, nil)
		if err != nil {
			return err
		}
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleWorkspace, err := databricks.NewWorkspace(ctx, "example", &databricks.WorkspaceArgs{
			Name:                      pulumi.String("databricks-test"),
			ResourceGroupName:         example.Name,
			Location:                  example.Location,
			Sku:                       pulumi.String("premium"),
			CustomerManagedKeyEnabled: pulumi.Bool(true),
			Tags: pulumi.StringMap{
				"Environment": pulumi.String("Production"),
			},
		})
		if err != nil {
			return err
		}
		exampleKeyVault, err := keyvault.NewKeyVault(ctx, "example", &keyvault.KeyVaultArgs{
			Name:                    pulumi.String("examplekeyvault"),
			Location:                example.Location,
			ResourceGroupName:       example.Name,
			TenantId:                pulumi.String(current.TenantId),
			SkuName:                 pulumi.String("premium"),
			PurgeProtectionEnabled:  pulumi.Bool(true),
			SoftDeleteRetentionDays: pulumi.Int(7),
		})
		if err != nil {
			return err
		}
		terraform, err := keyvault.NewAccessPolicy(ctx, "terraform", &keyvault.AccessPolicyArgs{
			KeyVaultId: exampleKeyVault.ID(),
			TenantId:   exampleKeyVault.TenantId,
			ObjectId:   pulumi.String(current.ObjectId),
			KeyPermissions: pulumi.StringArray{
				pulumi.String("Create"),
				pulumi.String("Delete"),
				pulumi.String("Get"),
				pulumi.String("Purge"),
				pulumi.String("Recover"),
				pulumi.String("Update"),
				pulumi.String("List"),
				pulumi.String("Decrypt"),
				pulumi.String("Sign"),
				pulumi.String("GetRotationPolicy"),
			},
		})
		if err != nil {
			return err
		}
		exampleKey, err := keyvault.NewKey(ctx, "example", &keyvault.KeyArgs{
			Name:       pulumi.String("example-certificate"),
			KeyVaultId: exampleKeyVault.ID(),
			KeyType:    pulumi.String("RSA"),
			KeySize:    pulumi.Int(2048),
			KeyOpts: pulumi.StringArray{
				pulumi.String("decrypt"),
				pulumi.String("encrypt"),
				pulumi.String("sign"),
				pulumi.String("unwrapKey"),
				pulumi.String("verify"),
				pulumi.String("wrapKey"),
			},
		}, pulumi.DependsOn([]pulumi.Resource{
			terraform,
		}))
		if err != nil {
			return err
		}
		databricks, err := keyvault.NewAccessPolicy(ctx, "databricks", &keyvault.AccessPolicyArgs{
			KeyVaultId: exampleKeyVault.ID(),
			TenantId: pulumi.String(exampleWorkspace.StorageAccountIdentities.ApplyT(func(storageAccountIdentities []databricks.WorkspaceStorageAccountIdentity) (*string, error) {
				return &storageAccountIdentities[0].TenantId, nil
			}).(pulumi.StringPtrOutput)),
			ObjectId: pulumi.String(exampleWorkspace.StorageAccountIdentities.ApplyT(func(storageAccountIdentities []databricks.WorkspaceStorageAccountIdentity) (*string, error) {
				return &storageAccountIdentities[0].PrincipalId, nil
			}).(pulumi.StringPtrOutput)),
			KeyPermissions: pulumi.StringArray{
				pulumi.String("Create"),
				pulumi.String("Delete"),
				pulumi.String("Get"),
				pulumi.String("Purge"),
				pulumi.String("Recover"),
				pulumi.String("Update"),
				pulumi.String("List"),
				pulumi.String("Decrypt"),
				pulumi.String("Sign"),
			},
		}, pulumi.DependsOn([]pulumi.Resource{
			exampleWorkspace,
		}))
		if err != nil {
			return err
		}
		_, err = databricks.NewWorkspaceRootDbfsCustomerManagedKey(ctx, "example", &databricks.WorkspaceRootDbfsCustomerManagedKeyArgs{
			WorkspaceId:   exampleWorkspace.ID(),
			KeyVaultKeyId: exampleKey.ID(),
		}, pulumi.DependsOn([]pulumi.Resource{
			databricks,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var current = Azure.Core.GetClientConfig.Invoke();

    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });

    var exampleWorkspace = new Azure.DataBricks.Workspace("example", new()
    {
        Name = "databricks-test",
        ResourceGroupName = example.Name,
        Location = example.Location,
        Sku = "premium",
        CustomerManagedKeyEnabled = true,
        Tags = 
        {
            { "Environment", "Production" },
        },
    });

    var exampleKeyVault = new Azure.KeyVault.KeyVault("example", new()
    {
        Name = "examplekeyvault",
        Location = example.Location,
        ResourceGroupName = example.Name,
        TenantId = current.Apply(getClientConfigResult => getClientConfigResult.TenantId),
        SkuName = "premium",
        PurgeProtectionEnabled = true,
        SoftDeleteRetentionDays = 7,
    });

    var terraform = new Azure.KeyVault.AccessPolicy("terraform", new()
    {
        KeyVaultId = exampleKeyVault.Id,
        TenantId = exampleKeyVault.TenantId,
        ObjectId = current.Apply(getClientConfigResult => getClientConfigResult.ObjectId),
        KeyPermissions = new[]
        {
            "Create",
            "Delete",
            "Get",
            "Purge",
            "Recover",
            "Update",
            "List",
            "Decrypt",
            "Sign",
            "GetRotationPolicy",
        },
    });

    var exampleKey = new Azure.KeyVault.Key("example", new()
    {
        Name = "example-certificate",
        KeyVaultId = exampleKeyVault.Id,
        KeyType = "RSA",
        KeySize = 2048,
        KeyOpts = new[]
        {
            "decrypt",
            "encrypt",
            "sign",
            "unwrapKey",
            "verify",
            "wrapKey",
        },
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            terraform,
        },
    });

    var databricks = new Azure.KeyVault.AccessPolicy("databricks", new()
    {
        KeyVaultId = exampleKeyVault.Id,
        TenantId = exampleWorkspace.StorageAccountIdentities.Apply(storageAccountIdentities => storageAccountIdentities[0].TenantId),
        ObjectId = exampleWorkspace.StorageAccountIdentities.Apply(storageAccountIdentities => storageAccountIdentities[0].PrincipalId),
        KeyPermissions = new[]
        {
            "Create",
            "Delete",
            "Get",
            "Purge",
            "Recover",
            "Update",
            "List",
            "Decrypt",
            "Sign",
        },
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            exampleWorkspace,
        },
    });

    var exampleWorkspaceRootDbfsCustomerManagedKey = new Azure.DataBricks.WorkspaceRootDbfsCustomerManagedKey("example", new()
    {
        WorkspaceId = exampleWorkspace.Id,
        KeyVaultKeyId = exampleKey.Id,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            databricks,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.CoreFunctions;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.databricks.Workspace;
import com.pulumi.azure.databricks.WorkspaceArgs;
import com.pulumi.azure.keyvault.KeyVault;
import com.pulumi.azure.keyvault.KeyVaultArgs;
import com.pulumi.azure.keyvault.AccessPolicy;
import com.pulumi.azure.keyvault.AccessPolicyArgs;
import com.pulumi.azure.keyvault.Key;
import com.pulumi.azure.keyvault.KeyArgs;
import com.pulumi.azure.databricks.WorkspaceRootDbfsCustomerManagedKey;
import com.pulumi.azure.databricks.WorkspaceRootDbfsCustomerManagedKeyArgs;
import com.pulumi.resources.CustomResourceOptions;
import java.util.List;
import java.util.ArrayList;
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) {
        final var current = CoreFunctions.getClientConfig();

        var example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());

        var exampleWorkspace = new Workspace("exampleWorkspace", WorkspaceArgs.builder()
            .name("databricks-test")
            .resourceGroupName(example.name())
            .location(example.location())
            .sku("premium")
            .customerManagedKeyEnabled(true)
            .tags(Map.of("Environment", "Production"))
            .build());

        var exampleKeyVault = new KeyVault("exampleKeyVault", KeyVaultArgs.builder()
            .name("examplekeyvault")
            .location(example.location())
            .resourceGroupName(example.name())
            .tenantId(current.applyValue(getClientConfigResult -> getClientConfigResult.tenantId()))
            .skuName("premium")
            .purgeProtectionEnabled(true)
            .softDeleteRetentionDays(7)
            .build());

        var terraform = new AccessPolicy("terraform", AccessPolicyArgs.builder()
            .keyVaultId(exampleKeyVault.id())
            .tenantId(exampleKeyVault.tenantId())
            .objectId(current.applyValue(getClientConfigResult -> getClientConfigResult.objectId()))
            .keyPermissions(            
                "Create",
                "Delete",
                "Get",
                "Purge",
                "Recover",
                "Update",
                "List",
                "Decrypt",
                "Sign",
                "GetRotationPolicy")
            .build());

        var exampleKey = new Key("exampleKey", KeyArgs.builder()
            .name("example-certificate")
            .keyVaultId(exampleKeyVault.id())
            .keyType("RSA")
            .keySize(2048)
            .keyOpts(            
                "decrypt",
                "encrypt",
                "sign",
                "unwrapKey",
                "verify",
                "wrapKey")
            .build(), CustomResourceOptions.builder()
                .dependsOn(terraform)
                .build());

        var databricks = new AccessPolicy("databricks", AccessPolicyArgs.builder()
            .keyVaultId(exampleKeyVault.id())
            .tenantId(exampleWorkspace.storageAccountIdentities().applyValue(storageAccountIdentities -> storageAccountIdentities[0].tenantId()))
            .objectId(exampleWorkspace.storageAccountIdentities().applyValue(storageAccountIdentities -> storageAccountIdentities[0].principalId()))
            .keyPermissions(            
                "Create",
                "Delete",
                "Get",
                "Purge",
                "Recover",
                "Update",
                "List",
                "Decrypt",
                "Sign")
            .build(), CustomResourceOptions.builder()
                .dependsOn(exampleWorkspace)
                .build());

        var exampleWorkspaceRootDbfsCustomerManagedKey = new WorkspaceRootDbfsCustomerManagedKey("exampleWorkspaceRootDbfsCustomerManagedKey", WorkspaceRootDbfsCustomerManagedKeyArgs.builder()
            .workspaceId(exampleWorkspace.id())
            .keyVaultKeyId(exampleKey.id())
            .build(), CustomResourceOptions.builder()
                .dependsOn(databricks)
                .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleWorkspace:
    type: azure:databricks:Workspace
    name: example
    properties:
      name: databricks-test
      resourceGroupName: ${example.name}
      location: ${example.location}
      sku: premium
      customerManagedKeyEnabled: true
      tags:
        Environment: Production
  exampleWorkspaceRootDbfsCustomerManagedKey:
    type: azure:databricks:WorkspaceRootDbfsCustomerManagedKey
    name: example
    properties:
      workspaceId: ${exampleWorkspace.id}
      keyVaultKeyId: ${exampleKey.id}
    options:
      dependsOn:
        - ${databricks}
  exampleKeyVault:
    type: azure:keyvault:KeyVault
    name: example
    properties:
      name: examplekeyvault
      location: ${example.location}
      resourceGroupName: ${example.name}
      tenantId: ${current.tenantId}
      skuName: premium
      purgeProtectionEnabled: true
      softDeleteRetentionDays: 7
  exampleKey:
    type: azure:keyvault:Key
    name: example
    properties:
      name: example-certificate
      keyVaultId: ${exampleKeyVault.id}
      keyType: RSA
      keySize: 2048
      keyOpts:
        - decrypt
        - encrypt
        - sign
        - unwrapKey
        - verify
        - wrapKey
    options:
      dependsOn:
        - ${terraform}
  terraform:
    type: azure:keyvault:AccessPolicy
    properties:
      keyVaultId: ${exampleKeyVault.id}
      tenantId: ${exampleKeyVault.tenantId}
      objectId: ${current.objectId}
      keyPermissions:
        - Create
        - Delete
        - Get
        - Purge
        - Recover
        - Update
        - List
        - Decrypt
        - Sign
        - GetRotationPolicy
  databricks:
    type: azure:keyvault:AccessPolicy
    properties:
      keyVaultId: ${exampleKeyVault.id}
      tenantId: ${exampleWorkspace.storageAccountIdentities[0].tenantId}
      objectId: ${exampleWorkspace.storageAccountIdentities[0].principalId}
      keyPermissions:
        - Create
        - Delete
        - Get
        - Purge
        - Recover
        - Update
        - List
        - Decrypt
        - Sign
    options:
      dependsOn:
        - ${exampleWorkspace}
variables:
  current:
    fn::invoke:
      function: azure:core:getClientConfig
      arguments: {}
Copy

Example HCL Configurations

  • Databricks Workspace with Root Databricks File System Customer Managed Keys
  • Databricks Workspace with Root Databricks File System Customer Managed Keys in a Different Subscription
  • Databricks Workspace with Private Endpoint, Customer Managed Keys for Managed Services and Root Databricks File System Customer Managed Keys

Create WorkspaceRootDbfsCustomerManagedKey Resource

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

Constructor syntax

new WorkspaceRootDbfsCustomerManagedKey(name: string, args: WorkspaceRootDbfsCustomerManagedKeyArgs, opts?: CustomResourceOptions);
@overload
def WorkspaceRootDbfsCustomerManagedKey(resource_name: str,
                                        args: WorkspaceRootDbfsCustomerManagedKeyArgs,
                                        opts: Optional[ResourceOptions] = None)

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

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. WorkspaceRootDbfsCustomerManagedKeyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. WorkspaceRootDbfsCustomerManagedKeyArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. WorkspaceRootDbfsCustomerManagedKeyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. WorkspaceRootDbfsCustomerManagedKeyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. WorkspaceRootDbfsCustomerManagedKeyArgs
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 workspaceRootDbfsCustomerManagedKeyResource = new Azure.DataBricks.WorkspaceRootDbfsCustomerManagedKey("workspaceRootDbfsCustomerManagedKeyResource", new()
{
    KeyVaultKeyId = "string",
    WorkspaceId = "string",
    KeyVaultId = "string",
});
Copy
example, err := databricks.NewWorkspaceRootDbfsCustomerManagedKey(ctx, "workspaceRootDbfsCustomerManagedKeyResource", &databricks.WorkspaceRootDbfsCustomerManagedKeyArgs{
	KeyVaultKeyId: pulumi.String("string"),
	WorkspaceId:   pulumi.String("string"),
	KeyVaultId:    pulumi.String("string"),
})
Copy
var workspaceRootDbfsCustomerManagedKeyResource = new WorkspaceRootDbfsCustomerManagedKey("workspaceRootDbfsCustomerManagedKeyResource", WorkspaceRootDbfsCustomerManagedKeyArgs.builder()
    .keyVaultKeyId("string")
    .workspaceId("string")
    .keyVaultId("string")
    .build());
Copy
workspace_root_dbfs_customer_managed_key_resource = azure.databricks.WorkspaceRootDbfsCustomerManagedKey("workspaceRootDbfsCustomerManagedKeyResource",
    key_vault_key_id="string",
    workspace_id="string",
    key_vault_id="string")
Copy
const workspaceRootDbfsCustomerManagedKeyResource = new azure.databricks.WorkspaceRootDbfsCustomerManagedKey("workspaceRootDbfsCustomerManagedKeyResource", {
    keyVaultKeyId: "string",
    workspaceId: "string",
    keyVaultId: "string",
});
Copy
type: azure:databricks:WorkspaceRootDbfsCustomerManagedKey
properties:
    keyVaultId: string
    keyVaultKeyId: string
    workspaceId: string
Copy

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

KeyVaultKeyId This property is required. string
The resource ID of the Key Vault Key to be used.
WorkspaceId This property is required. string
The resource ID of the Databricks Workspace.
KeyVaultId string
KeyVaultKeyId This property is required. string
The resource ID of the Key Vault Key to be used.
WorkspaceId This property is required. string
The resource ID of the Databricks Workspace.
KeyVaultId string
keyVaultKeyId This property is required. String
The resource ID of the Key Vault Key to be used.
workspaceId This property is required. String
The resource ID of the Databricks Workspace.
keyVaultId String
keyVaultKeyId This property is required. string
The resource ID of the Key Vault Key to be used.
workspaceId This property is required. string
The resource ID of the Databricks Workspace.
keyVaultId string
key_vault_key_id This property is required. str
The resource ID of the Key Vault Key to be used.
workspace_id This property is required. str
The resource ID of the Databricks Workspace.
key_vault_id str
keyVaultKeyId This property is required. String
The resource ID of the Key Vault Key to be used.
workspaceId This property is required. String
The resource ID of the Databricks Workspace.
keyVaultId String

Outputs

All input properties are implicitly available as output properties. Additionally, the WorkspaceRootDbfsCustomerManagedKey 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 WorkspaceRootDbfsCustomerManagedKey Resource

Get an existing WorkspaceRootDbfsCustomerManagedKey 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?: WorkspaceRootDbfsCustomerManagedKeyState, opts?: CustomResourceOptions): WorkspaceRootDbfsCustomerManagedKey
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        key_vault_id: Optional[str] = None,
        key_vault_key_id: Optional[str] = None,
        workspace_id: Optional[str] = None) -> WorkspaceRootDbfsCustomerManagedKey
func GetWorkspaceRootDbfsCustomerManagedKey(ctx *Context, name string, id IDInput, state *WorkspaceRootDbfsCustomerManagedKeyState, opts ...ResourceOption) (*WorkspaceRootDbfsCustomerManagedKey, error)
public static WorkspaceRootDbfsCustomerManagedKey Get(string name, Input<string> id, WorkspaceRootDbfsCustomerManagedKeyState? state, CustomResourceOptions? opts = null)
public static WorkspaceRootDbfsCustomerManagedKey get(String name, Output<String> id, WorkspaceRootDbfsCustomerManagedKeyState state, CustomResourceOptions options)
resources:  _:    type: azure:databricks:WorkspaceRootDbfsCustomerManagedKey    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
KeyVaultId string
KeyVaultKeyId string
The resource ID of the Key Vault Key to be used.
WorkspaceId string
The resource ID of the Databricks Workspace.
KeyVaultId string
KeyVaultKeyId string
The resource ID of the Key Vault Key to be used.
WorkspaceId string
The resource ID of the Databricks Workspace.
keyVaultId String
keyVaultKeyId String
The resource ID of the Key Vault Key to be used.
workspaceId String
The resource ID of the Databricks Workspace.
keyVaultId string
keyVaultKeyId string
The resource ID of the Key Vault Key to be used.
workspaceId string
The resource ID of the Databricks Workspace.
key_vault_id str
key_vault_key_id str
The resource ID of the Key Vault Key to be used.
workspace_id str
The resource ID of the Databricks Workspace.
keyVaultId String
keyVaultKeyId String
The resource ID of the Key Vault Key to be used.
workspaceId String
The resource ID of the Databricks Workspace.

Import

Databricks Workspace Root DBFS Customer Managed Key can be imported using the resource id, e.g.

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

To learn more about importing existing cloud resources, see Importing resources.

Package Details

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