1. Packages
  2. Databricks Provider
  3. API Docs
  4. EnvironmentsDefaultWorkspaceBaseEnvironment
Viewing docs for Databricks v1.90.0
published on Thursday, Mar 19, 2026 by Pulumi
databricks logo
Viewing docs for Databricks v1.90.0
published on Thursday, Mar 19, 2026 by Pulumi

    Public Beta

    The Default Workspace Base Environment is a singleton resource that configures which workspace base environments are applied by default to new notebooks in the workspace. Defaults can be set separately for CPU and GPU compute.

    Without a default configured, new notebooks do not use a workspace base environment by default.

    Example Usage

    Set Default for CPU Compute

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const cpuEnv = new databricks.index.WorkspaceBaseEnvironment("cpu_env", {
        displayName: "my-cpu-environment",
        filepath: "/Volumes/catalog/schema/volume/cpu-environment.yaml",
    });
    const _this = new databricks.index.DefaultWorkspaceBaseEnvironment("this", {cpuWorkspaceBaseEnvironment: cpuEnv.name});
    
    import pulumi
    import pulumi_databricks as databricks
    
    cpu_env = databricks.index.WorkspaceBaseEnvironment("cpu_env",
        display_name=my-cpu-environment,
        filepath=/Volumes/catalog/schema/volume/cpu-environment.yaml)
    this = databricks.index.DefaultWorkspaceBaseEnvironment("this", cpu_workspace_base_environment=cpu_env.name)
    
    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 {
    		cpuEnv, err := databricks.NewWorkspaceBaseEnvironment(ctx, "cpu_env", &databricks.WorkspaceBaseEnvironmentArgs{
    			DisplayName: "my-cpu-environment",
    			Filepath:    "/Volumes/catalog/schema/volume/cpu-environment.yaml",
    		})
    		if err != nil {
    			return err
    		}
    		_, err = databricks.NewDefaultWorkspaceBaseEnvironment(ctx, "this", &databricks.DefaultWorkspaceBaseEnvironmentArgs{
    			CpuWorkspaceBaseEnvironment: cpuEnv.Name,
    		})
    		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 cpuEnv = new Databricks.Index.WorkspaceBaseEnvironment("cpu_env", new()
        {
            DisplayName = "my-cpu-environment",
            Filepath = "/Volumes/catalog/schema/volume/cpu-environment.yaml",
        });
    
        var @this = new Databricks.Index.DefaultWorkspaceBaseEnvironment("this", new()
        {
            CpuWorkspaceBaseEnvironment = cpuEnv.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.WorkspaceBaseEnvironment;
    import com.pulumi.databricks.WorkspaceBaseEnvironmentArgs;
    import com.pulumi.databricks.DefaultWorkspaceBaseEnvironment;
    import com.pulumi.databricks.DefaultWorkspaceBaseEnvironmentArgs;
    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) {
            var cpuEnv = new WorkspaceBaseEnvironment("cpuEnv", WorkspaceBaseEnvironmentArgs.builder()
                .displayName("my-cpu-environment")
                .filepath("/Volumes/catalog/schema/volume/cpu-environment.yaml")
                .build());
    
            var this_ = new DefaultWorkspaceBaseEnvironment("this", DefaultWorkspaceBaseEnvironmentArgs.builder()
                .cpuWorkspaceBaseEnvironment(cpuEnv.name())
                .build());
    
        }
    }
    
    resources:
      cpuEnv:
        type: databricks:WorkspaceBaseEnvironment
        name: cpu_env
        properties:
          displayName: my-cpu-environment
          filepath: /Volumes/catalog/schema/volume/cpu-environment.yaml
      this:
        type: databricks:DefaultWorkspaceBaseEnvironment
        properties:
          cpuWorkspaceBaseEnvironment: ${cpuEnv.name}
    

    Set Defaults for Both CPU and GPU Compute

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const cpuEnv = new databricks.index.WorkspaceBaseEnvironment("cpu_env", {
        displayName: "my-cpu-environment",
        filepath: "/Volumes/catalog/schema/volume/cpu-environment.yaml",
    });
    const gpuEnv = new databricks.index.WorkspaceBaseEnvironment("gpu_env", {
        displayName: "my-gpu-environment",
        filepath: "/Volumes/catalog/schema/volume/gpu-environment.yaml",
        baseEnvironmentType: "GPU_LARGE",
    });
    const _this = new databricks.index.DefaultWorkspaceBaseEnvironment("this", {
        cpuWorkspaceBaseEnvironment: cpuEnv.name,
        gpuWorkspaceBaseEnvironment: gpuEnv.name,
    });
    
    import pulumi
    import pulumi_databricks as databricks
    
    cpu_env = databricks.index.WorkspaceBaseEnvironment("cpu_env",
        display_name=my-cpu-environment,
        filepath=/Volumes/catalog/schema/volume/cpu-environment.yaml)
    gpu_env = databricks.index.WorkspaceBaseEnvironment("gpu_env",
        display_name=my-gpu-environment,
        filepath=/Volumes/catalog/schema/volume/gpu-environment.yaml,
        base_environment_type=GPU_LARGE)
    this = databricks.index.DefaultWorkspaceBaseEnvironment("this",
        cpu_workspace_base_environment=cpu_env.name,
        gpu_workspace_base_environment=gpu_env.name)
    
    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 {
    		cpuEnv, err := databricks.NewWorkspaceBaseEnvironment(ctx, "cpu_env", &databricks.WorkspaceBaseEnvironmentArgs{
    			DisplayName: "my-cpu-environment",
    			Filepath:    "/Volumes/catalog/schema/volume/cpu-environment.yaml",
    		})
    		if err != nil {
    			return err
    		}
    		gpuEnv, err := databricks.NewWorkspaceBaseEnvironment(ctx, "gpu_env", &databricks.WorkspaceBaseEnvironmentArgs{
    			DisplayName:         "my-gpu-environment",
    			Filepath:            "/Volumes/catalog/schema/volume/gpu-environment.yaml",
    			BaseEnvironmentType: "GPU_LARGE",
    		})
    		if err != nil {
    			return err
    		}
    		_, err = databricks.NewDefaultWorkspaceBaseEnvironment(ctx, "this", &databricks.DefaultWorkspaceBaseEnvironmentArgs{
    			CpuWorkspaceBaseEnvironment: cpuEnv.Name,
    			GpuWorkspaceBaseEnvironment: gpuEnv.Name,
    		})
    		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 cpuEnv = new Databricks.Index.WorkspaceBaseEnvironment("cpu_env", new()
        {
            DisplayName = "my-cpu-environment",
            Filepath = "/Volumes/catalog/schema/volume/cpu-environment.yaml",
        });
    
        var gpuEnv = new Databricks.Index.WorkspaceBaseEnvironment("gpu_env", new()
        {
            DisplayName = "my-gpu-environment",
            Filepath = "/Volumes/catalog/schema/volume/gpu-environment.yaml",
            BaseEnvironmentType = "GPU_LARGE",
        });
    
        var @this = new Databricks.Index.DefaultWorkspaceBaseEnvironment("this", new()
        {
            CpuWorkspaceBaseEnvironment = cpuEnv.Name,
            GpuWorkspaceBaseEnvironment = gpuEnv.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.WorkspaceBaseEnvironment;
    import com.pulumi.databricks.WorkspaceBaseEnvironmentArgs;
    import com.pulumi.databricks.DefaultWorkspaceBaseEnvironment;
    import com.pulumi.databricks.DefaultWorkspaceBaseEnvironmentArgs;
    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) {
            var cpuEnv = new WorkspaceBaseEnvironment("cpuEnv", WorkspaceBaseEnvironmentArgs.builder()
                .displayName("my-cpu-environment")
                .filepath("/Volumes/catalog/schema/volume/cpu-environment.yaml")
                .build());
    
            var gpuEnv = new WorkspaceBaseEnvironment("gpuEnv", WorkspaceBaseEnvironmentArgs.builder()
                .displayName("my-gpu-environment")
                .filepath("/Volumes/catalog/schema/volume/gpu-environment.yaml")
                .baseEnvironmentType("GPU_LARGE")
                .build());
    
            var this_ = new DefaultWorkspaceBaseEnvironment("this", DefaultWorkspaceBaseEnvironmentArgs.builder()
                .cpuWorkspaceBaseEnvironment(cpuEnv.name())
                .gpuWorkspaceBaseEnvironment(gpuEnv.name())
                .build());
    
        }
    }
    
    resources:
      cpuEnv:
        type: databricks:WorkspaceBaseEnvironment
        name: cpu_env
        properties:
          displayName: my-cpu-environment
          filepath: /Volumes/catalog/schema/volume/cpu-environment.yaml
      gpuEnv:
        type: databricks:WorkspaceBaseEnvironment
        name: gpu_env
        properties:
          displayName: my-gpu-environment
          filepath: /Volumes/catalog/schema/volume/gpu-environment.yaml
          baseEnvironmentType: GPU_LARGE
      this:
        type: databricks:DefaultWorkspaceBaseEnvironment
        properties:
          cpuWorkspaceBaseEnvironment: ${cpuEnv.name}
          gpuWorkspaceBaseEnvironment: ${gpuEnv.name}
    

    Unset Both Defaults

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const _this = new databricks.index.DefaultWorkspaceBaseEnvironment("this", {});
    
    import pulumi
    import pulumi_databricks as databricks
    
    this = databricks.index.DefaultWorkspaceBaseEnvironment("this")
    
    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.NewDefaultWorkspaceBaseEnvironment(ctx, "this", nil)
    		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.Index.DefaultWorkspaceBaseEnvironment("this");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.DefaultWorkspaceBaseEnvironment;
    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) {
            var this_ = new DefaultWorkspaceBaseEnvironment("this");
    
        }
    }
    
    resources:
      this:
        type: databricks:DefaultWorkspaceBaseEnvironment
    

    Create EnvironmentsDefaultWorkspaceBaseEnvironment Resource

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

    Constructor syntax

    new EnvironmentsDefaultWorkspaceBaseEnvironment(name: string, args?: EnvironmentsDefaultWorkspaceBaseEnvironmentArgs, opts?: CustomResourceOptions);
    @overload
    def EnvironmentsDefaultWorkspaceBaseEnvironment(resource_name: str,
                                                    args: Optional[EnvironmentsDefaultWorkspaceBaseEnvironmentArgs] = None,
                                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def EnvironmentsDefaultWorkspaceBaseEnvironment(resource_name: str,
                                                    opts: Optional[ResourceOptions] = None,
                                                    cpu_workspace_base_environment: Optional[str] = None,
                                                    gpu_workspace_base_environment: Optional[str] = None,
                                                    provider_config: Optional[EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfigArgs] = None)
    func NewEnvironmentsDefaultWorkspaceBaseEnvironment(ctx *Context, name string, args *EnvironmentsDefaultWorkspaceBaseEnvironmentArgs, opts ...ResourceOption) (*EnvironmentsDefaultWorkspaceBaseEnvironment, error)
    public EnvironmentsDefaultWorkspaceBaseEnvironment(string name, EnvironmentsDefaultWorkspaceBaseEnvironmentArgs? args = null, CustomResourceOptions? opts = null)
    public EnvironmentsDefaultWorkspaceBaseEnvironment(String name, EnvironmentsDefaultWorkspaceBaseEnvironmentArgs args)
    public EnvironmentsDefaultWorkspaceBaseEnvironment(String name, EnvironmentsDefaultWorkspaceBaseEnvironmentArgs args, CustomResourceOptions options)
    
    type: databricks:EnvironmentsDefaultWorkspaceBaseEnvironment
    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 EnvironmentsDefaultWorkspaceBaseEnvironmentArgs
    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 EnvironmentsDefaultWorkspaceBaseEnvironmentArgs
    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 EnvironmentsDefaultWorkspaceBaseEnvironmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EnvironmentsDefaultWorkspaceBaseEnvironmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EnvironmentsDefaultWorkspaceBaseEnvironmentArgs
    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 environmentsDefaultWorkspaceBaseEnvironmentResource = new Databricks.EnvironmentsDefaultWorkspaceBaseEnvironment("environmentsDefaultWorkspaceBaseEnvironmentResource", new()
    {
        CpuWorkspaceBaseEnvironment = "string",
        GpuWorkspaceBaseEnvironment = "string",
        ProviderConfig = new Databricks.Inputs.EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfigArgs
        {
            WorkspaceId = "string",
        },
    });
    
    example, err := databricks.NewEnvironmentsDefaultWorkspaceBaseEnvironment(ctx, "environmentsDefaultWorkspaceBaseEnvironmentResource", &databricks.EnvironmentsDefaultWorkspaceBaseEnvironmentArgs{
    	CpuWorkspaceBaseEnvironment: pulumi.String("string"),
    	GpuWorkspaceBaseEnvironment: pulumi.String("string"),
    	ProviderConfig: &databricks.EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfigArgs{
    		WorkspaceId: pulumi.String("string"),
    	},
    })
    
    var environmentsDefaultWorkspaceBaseEnvironmentResource = new EnvironmentsDefaultWorkspaceBaseEnvironment("environmentsDefaultWorkspaceBaseEnvironmentResource", EnvironmentsDefaultWorkspaceBaseEnvironmentArgs.builder()
        .cpuWorkspaceBaseEnvironment("string")
        .gpuWorkspaceBaseEnvironment("string")
        .providerConfig(EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfigArgs.builder()
            .workspaceId("string")
            .build())
        .build());
    
    environments_default_workspace_base_environment_resource = databricks.EnvironmentsDefaultWorkspaceBaseEnvironment("environmentsDefaultWorkspaceBaseEnvironmentResource",
        cpu_workspace_base_environment="string",
        gpu_workspace_base_environment="string",
        provider_config={
            "workspace_id": "string",
        })
    
    const environmentsDefaultWorkspaceBaseEnvironmentResource = new databricks.EnvironmentsDefaultWorkspaceBaseEnvironment("environmentsDefaultWorkspaceBaseEnvironmentResource", {
        cpuWorkspaceBaseEnvironment: "string",
        gpuWorkspaceBaseEnvironment: "string",
        providerConfig: {
            workspaceId: "string",
        },
    });
    
    type: databricks:EnvironmentsDefaultWorkspaceBaseEnvironment
    properties:
        cpuWorkspaceBaseEnvironment: string
        gpuWorkspaceBaseEnvironment: string
        providerConfig:
            workspaceId: string
    

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

    CpuWorkspaceBaseEnvironment string
    The default workspace base environment for CPU compute. Format: workspace-base-environments/{workspace_base_environment}
    GpuWorkspaceBaseEnvironment string
    The default workspace base environment for GPU compute. Format: workspace-base-environments/{workspace_base_environment}
    ProviderConfig EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfig
    Configure the provider for management through account provider.
    CpuWorkspaceBaseEnvironment string
    The default workspace base environment for CPU compute. Format: workspace-base-environments/{workspace_base_environment}
    GpuWorkspaceBaseEnvironment string
    The default workspace base environment for GPU compute. Format: workspace-base-environments/{workspace_base_environment}
    ProviderConfig EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfigArgs
    Configure the provider for management through account provider.
    cpuWorkspaceBaseEnvironment String
    The default workspace base environment for CPU compute. Format: workspace-base-environments/{workspace_base_environment}
    gpuWorkspaceBaseEnvironment String
    The default workspace base environment for GPU compute. Format: workspace-base-environments/{workspace_base_environment}
    providerConfig EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfig
    Configure the provider for management through account provider.
    cpuWorkspaceBaseEnvironment string
    The default workspace base environment for CPU compute. Format: workspace-base-environments/{workspace_base_environment}
    gpuWorkspaceBaseEnvironment string
    The default workspace base environment for GPU compute. Format: workspace-base-environments/{workspace_base_environment}
    providerConfig EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfig
    Configure the provider for management through account provider.
    cpu_workspace_base_environment str
    The default workspace base environment for CPU compute. Format: workspace-base-environments/{workspace_base_environment}
    gpu_workspace_base_environment str
    The default workspace base environment for GPU compute. Format: workspace-base-environments/{workspace_base_environment}
    provider_config EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfigArgs
    Configure the provider for management through account provider.
    cpuWorkspaceBaseEnvironment String
    The default workspace base environment for CPU compute. Format: workspace-base-environments/{workspace_base_environment}
    gpuWorkspaceBaseEnvironment String
    The default workspace base environment for GPU compute. Format: workspace-base-environments/{workspace_base_environment}
    providerConfig Property Map
    Configure the provider for management through account provider.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    (string) - The resource name of this singleton resource. Format: default-workspace-base-environment
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    (string) - The resource name of this singleton resource. Format: default-workspace-base-environment
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    (string) - The resource name of this singleton resource. Format: default-workspace-base-environment
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    (string) - The resource name of this singleton resource. Format: default-workspace-base-environment
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    (string) - The resource name of this singleton resource. Format: default-workspace-base-environment
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    (string) - The resource name of this singleton resource. Format: default-workspace-base-environment

    Look up Existing EnvironmentsDefaultWorkspaceBaseEnvironment Resource

    Get an existing EnvironmentsDefaultWorkspaceBaseEnvironment 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?: EnvironmentsDefaultWorkspaceBaseEnvironmentState, opts?: CustomResourceOptions): EnvironmentsDefaultWorkspaceBaseEnvironment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cpu_workspace_base_environment: Optional[str] = None,
            gpu_workspace_base_environment: Optional[str] = None,
            name: Optional[str] = None,
            provider_config: Optional[EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfigArgs] = None) -> EnvironmentsDefaultWorkspaceBaseEnvironment
    func GetEnvironmentsDefaultWorkspaceBaseEnvironment(ctx *Context, name string, id IDInput, state *EnvironmentsDefaultWorkspaceBaseEnvironmentState, opts ...ResourceOption) (*EnvironmentsDefaultWorkspaceBaseEnvironment, error)
    public static EnvironmentsDefaultWorkspaceBaseEnvironment Get(string name, Input<string> id, EnvironmentsDefaultWorkspaceBaseEnvironmentState? state, CustomResourceOptions? opts = null)
    public static EnvironmentsDefaultWorkspaceBaseEnvironment get(String name, Output<String> id, EnvironmentsDefaultWorkspaceBaseEnvironmentState state, CustomResourceOptions options)
    resources:  _:    type: databricks:EnvironmentsDefaultWorkspaceBaseEnvironment    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:
    CpuWorkspaceBaseEnvironment string
    The default workspace base environment for CPU compute. Format: workspace-base-environments/{workspace_base_environment}
    GpuWorkspaceBaseEnvironment string
    The default workspace base environment for GPU compute. Format: workspace-base-environments/{workspace_base_environment}
    Name string
    (string) - The resource name of this singleton resource. Format: default-workspace-base-environment
    ProviderConfig EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfig
    Configure the provider for management through account provider.
    CpuWorkspaceBaseEnvironment string
    The default workspace base environment for CPU compute. Format: workspace-base-environments/{workspace_base_environment}
    GpuWorkspaceBaseEnvironment string
    The default workspace base environment for GPU compute. Format: workspace-base-environments/{workspace_base_environment}
    Name string
    (string) - The resource name of this singleton resource. Format: default-workspace-base-environment
    ProviderConfig EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfigArgs
    Configure the provider for management through account provider.
    cpuWorkspaceBaseEnvironment String
    The default workspace base environment for CPU compute. Format: workspace-base-environments/{workspace_base_environment}
    gpuWorkspaceBaseEnvironment String
    The default workspace base environment for GPU compute. Format: workspace-base-environments/{workspace_base_environment}
    name String
    (string) - The resource name of this singleton resource. Format: default-workspace-base-environment
    providerConfig EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfig
    Configure the provider for management through account provider.
    cpuWorkspaceBaseEnvironment string
    The default workspace base environment for CPU compute. Format: workspace-base-environments/{workspace_base_environment}
    gpuWorkspaceBaseEnvironment string
    The default workspace base environment for GPU compute. Format: workspace-base-environments/{workspace_base_environment}
    name string
    (string) - The resource name of this singleton resource. Format: default-workspace-base-environment
    providerConfig EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfig
    Configure the provider for management through account provider.
    cpu_workspace_base_environment str
    The default workspace base environment for CPU compute. Format: workspace-base-environments/{workspace_base_environment}
    gpu_workspace_base_environment str
    The default workspace base environment for GPU compute. Format: workspace-base-environments/{workspace_base_environment}
    name str
    (string) - The resource name of this singleton resource. Format: default-workspace-base-environment
    provider_config EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfigArgs
    Configure the provider for management through account provider.
    cpuWorkspaceBaseEnvironment String
    The default workspace base environment for CPU compute. Format: workspace-base-environments/{workspace_base_environment}
    gpuWorkspaceBaseEnvironment String
    The default workspace base environment for GPU compute. Format: workspace-base-environments/{workspace_base_environment}
    name String
    (string) - The resource name of this singleton resource. Format: default-workspace-base-environment
    providerConfig Property Map
    Configure the provider for management through account provider.

    Supporting Types

    EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfig, EnvironmentsDefaultWorkspaceBaseEnvironmentProviderConfigArgs

    WorkspaceId string
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    WorkspaceId string
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspaceId String
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspaceId string
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspace_id str
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspaceId String
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.

    Package Details

    Repository
    databricks pulumi/pulumi-databricks
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the databricks Terraform Provider.
    databricks logo
    Viewing docs for Databricks v1.90.0
    published on Thursday, Mar 19, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.