1. Packages
  2. Databricks Provider
  3. API Docs
  4. AppsSettingsCustomTemplate
Databricks v1.75.0 published on Thursday, Sep 11, 2025 by Pulumi

databricks.AppsSettingsCustomTemplate

Explore with Pulumi AI

databricks logo
Databricks v1.75.0 published on Thursday, Sep 11, 2025 by Pulumi

    Custom App Templates store the metadata of custom app code hosted in an external Git repository, enabling users to reuse boilerplate code when creating apps.

    Example Usage

    Basic Example

    This example creates a Custom Template in the workspace with the specified name.

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const _this = new databricks.AppsSettingsCustomTemplate("this", {
        name: "my-custom-template",
        description: "A sample custom app template",
        gitRepo: "https://github.com/example/repo.git",
        path: "path-to-template",
        gitProvider: "github",
        manifest: {
            version: 1,
            name: "my-custom-app",
        },
    });
    
    import pulumi
    import pulumi_databricks as databricks
    
    this = databricks.AppsSettingsCustomTemplate("this",
        name="my-custom-template",
        description="A sample custom app template",
        git_repo="https://github.com/example/repo.git",
        path="path-to-template",
        git_provider="github",
        manifest={
            "version": 1,
            "name": "my-custom-app",
        })
    
    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.NewAppsSettingsCustomTemplate(ctx, "this", &databricks.AppsSettingsCustomTemplateArgs{
    			Name:        pulumi.String("my-custom-template"),
    			Description: pulumi.String("A sample custom app template"),
    			GitRepo:     pulumi.String("https://github.com/example/repo.git"),
    			Path:        pulumi.String("path-to-template"),
    			GitProvider: pulumi.String("github"),
    			Manifest: &databricks.AppsSettingsCustomTemplateManifestArgs{
    				Version: pulumi.Int(1),
    				Name:    pulumi.String("my-custom-app"),
    			},
    		})
    		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.AppsSettingsCustomTemplate("this", new()
        {
            Name = "my-custom-template",
            Description = "A sample custom app template",
            GitRepo = "https://github.com/example/repo.git",
            Path = "path-to-template",
            GitProvider = "github",
            Manifest = new Databricks.Inputs.AppsSettingsCustomTemplateManifestArgs
            {
                Version = 1,
                Name = "my-custom-app",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.AppsSettingsCustomTemplate;
    import com.pulumi.databricks.AppsSettingsCustomTemplateArgs;
    import com.pulumi.databricks.inputs.AppsSettingsCustomTemplateManifestArgs;
    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 AppsSettingsCustomTemplate("this", AppsSettingsCustomTemplateArgs.builder()
                .name("my-custom-template")
                .description("A sample custom app template")
                .gitRepo("https://github.com/example/repo.git")
                .path("path-to-template")
                .gitProvider("github")
                .manifest(AppsSettingsCustomTemplateManifestArgs.builder()
                    .version(1)
                    .name("my-custom-app")
                    .build())
                .build());
    
        }
    }
    
    resources:
      this:
        type: databricks:AppsSettingsCustomTemplate
        properties:
          name: my-custom-template
          description: A sample custom app template
          gitRepo: https://github.com/example/repo.git
          path: path-to-template
          gitProvider: github
          manifest:
            version: 1
            name: my-custom-app
    

    Example with API Scopes

    This example creates a custom template that declares required user API scopes.

    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    resources:
      apiScopesExample:
        type: databricks:AppsSettingsCustomTemplate
        name: api_scopes_example
        properties:
          name: my-api-template
          description: A template that requests user API scopes
          gitRepo: https://github.com/example/my-app.git
          path: templates/app
          gitProvider: github
          manifest:
            version: 1
            name: my-databricks-app
            description: This app requires the SQL API scope.
            user_api_scopes:
              - sql
    

    Example with Resource Requirements

    This example defines a template that requests specific workspace resources with permissions granted.

    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    resources:
      resourcesExample:
        type: databricks:AppsSettingsCustomTemplate
        name: resources_example
        properties:
          name: my-resource-template
          description: Template that requires secret and SQL warehouse access
          gitRepo: https://github.com/example/resource-app.git
          path: resource-template
          gitProvider: github
          manifest:
            version: 1
            name: resource-consuming-app
            description: This app requires access to a secret and SQL warehouse.
            resource_specs:
              - name: my-secret
                description: A secret needed by the app
                secretSpec:
                  permission: READ
              - name: warehouse
                description: Warehouse access
                sqlWarehouseSpec:
                  permission: CAN_USE
    

    Create AppsSettingsCustomTemplate Resource

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

    Constructor syntax

    new AppsSettingsCustomTemplate(name: string, args: AppsSettingsCustomTemplateArgs, opts?: CustomResourceOptions);
    @overload
    def AppsSettingsCustomTemplate(resource_name: str,
                                   args: AppsSettingsCustomTemplateArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def AppsSettingsCustomTemplate(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   git_provider: Optional[str] = None,
                                   git_repo: Optional[str] = None,
                                   manifest: Optional[AppsSettingsCustomTemplateManifestArgs] = None,
                                   path: Optional[str] = None,
                                   description: Optional[str] = None,
                                   name: Optional[str] = None,
                                   workspace_id: Optional[str] = None)
    func NewAppsSettingsCustomTemplate(ctx *Context, name string, args AppsSettingsCustomTemplateArgs, opts ...ResourceOption) (*AppsSettingsCustomTemplate, error)
    public AppsSettingsCustomTemplate(string name, AppsSettingsCustomTemplateArgs args, CustomResourceOptions? opts = null)
    public AppsSettingsCustomTemplate(String name, AppsSettingsCustomTemplateArgs args)
    public AppsSettingsCustomTemplate(String name, AppsSettingsCustomTemplateArgs args, CustomResourceOptions options)
    
    type: databricks:AppsSettingsCustomTemplate
    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 AppsSettingsCustomTemplateArgs
    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 AppsSettingsCustomTemplateArgs
    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 AppsSettingsCustomTemplateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AppsSettingsCustomTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AppsSettingsCustomTemplateArgs
    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 appsSettingsCustomTemplateResource = new Databricks.AppsSettingsCustomTemplate("appsSettingsCustomTemplateResource", new()
    {
        GitProvider = "string",
        GitRepo = "string",
        Manifest = new Databricks.Inputs.AppsSettingsCustomTemplateManifestArgs
        {
            Name = "string",
            Version = 0,
            Description = "string",
            ResourceSpecs = new[]
            {
                new Databricks.Inputs.AppsSettingsCustomTemplateManifestResourceSpecArgs
                {
                    Name = "string",
                    Description = "string",
                    JobSpec = new Databricks.Inputs.AppsSettingsCustomTemplateManifestResourceSpecJobSpecArgs
                    {
                        Permission = "string",
                    },
                    SecretSpec = new Databricks.Inputs.AppsSettingsCustomTemplateManifestResourceSpecSecretSpecArgs
                    {
                        Permission = "string",
                    },
                    ServingEndpointSpec = new Databricks.Inputs.AppsSettingsCustomTemplateManifestResourceSpecServingEndpointSpecArgs
                    {
                        Permission = "string",
                    },
                    SqlWarehouseSpec = new Databricks.Inputs.AppsSettingsCustomTemplateManifestResourceSpecSqlWarehouseSpecArgs
                    {
                        Permission = "string",
                    },
                    UcSecurableSpec = new Databricks.Inputs.AppsSettingsCustomTemplateManifestResourceSpecUcSecurableSpecArgs
                    {
                        Permission = "string",
                        SecurableType = "string",
                    },
                },
            },
        },
        Path = "string",
        Description = "string",
        Name = "string",
        WorkspaceId = "string",
    });
    
    example, err := databricks.NewAppsSettingsCustomTemplate(ctx, "appsSettingsCustomTemplateResource", &databricks.AppsSettingsCustomTemplateArgs{
    	GitProvider: pulumi.String("string"),
    	GitRepo:     pulumi.String("string"),
    	Manifest: &databricks.AppsSettingsCustomTemplateManifestArgs{
    		Name:        pulumi.String("string"),
    		Version:     pulumi.Int(0),
    		Description: pulumi.String("string"),
    		ResourceSpecs: databricks.AppsSettingsCustomTemplateManifestResourceSpecArray{
    			&databricks.AppsSettingsCustomTemplateManifestResourceSpecArgs{
    				Name:        pulumi.String("string"),
    				Description: pulumi.String("string"),
    				JobSpec: &databricks.AppsSettingsCustomTemplateManifestResourceSpecJobSpecArgs{
    					Permission: pulumi.String("string"),
    				},
    				SecretSpec: &databricks.AppsSettingsCustomTemplateManifestResourceSpecSecretSpecArgs{
    					Permission: pulumi.String("string"),
    				},
    				ServingEndpointSpec: &databricks.AppsSettingsCustomTemplateManifestResourceSpecServingEndpointSpecArgs{
    					Permission: pulumi.String("string"),
    				},
    				SqlWarehouseSpec: &databricks.AppsSettingsCustomTemplateManifestResourceSpecSqlWarehouseSpecArgs{
    					Permission: pulumi.String("string"),
    				},
    				UcSecurableSpec: &databricks.AppsSettingsCustomTemplateManifestResourceSpecUcSecurableSpecArgs{
    					Permission:    pulumi.String("string"),
    					SecurableType: pulumi.String("string"),
    				},
    			},
    		},
    	},
    	Path:        pulumi.String("string"),
    	Description: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	WorkspaceId: pulumi.String("string"),
    })
    
    var appsSettingsCustomTemplateResource = new AppsSettingsCustomTemplate("appsSettingsCustomTemplateResource", AppsSettingsCustomTemplateArgs.builder()
        .gitProvider("string")
        .gitRepo("string")
        .manifest(AppsSettingsCustomTemplateManifestArgs.builder()
            .name("string")
            .version(0)
            .description("string")
            .resourceSpecs(AppsSettingsCustomTemplateManifestResourceSpecArgs.builder()
                .name("string")
                .description("string")
                .jobSpec(AppsSettingsCustomTemplateManifestResourceSpecJobSpecArgs.builder()
                    .permission("string")
                    .build())
                .secretSpec(AppsSettingsCustomTemplateManifestResourceSpecSecretSpecArgs.builder()
                    .permission("string")
                    .build())
                .servingEndpointSpec(AppsSettingsCustomTemplateManifestResourceSpecServingEndpointSpecArgs.builder()
                    .permission("string")
                    .build())
                .sqlWarehouseSpec(AppsSettingsCustomTemplateManifestResourceSpecSqlWarehouseSpecArgs.builder()
                    .permission("string")
                    .build())
                .ucSecurableSpec(AppsSettingsCustomTemplateManifestResourceSpecUcSecurableSpecArgs.builder()
                    .permission("string")
                    .securableType("string")
                    .build())
                .build())
            .build())
        .path("string")
        .description("string")
        .name("string")
        .workspaceId("string")
        .build());
    
    apps_settings_custom_template_resource = databricks.AppsSettingsCustomTemplate("appsSettingsCustomTemplateResource",
        git_provider="string",
        git_repo="string",
        manifest={
            "name": "string",
            "version": 0,
            "description": "string",
            "resource_specs": [{
                "name": "string",
                "description": "string",
                "job_spec": {
                    "permission": "string",
                },
                "secret_spec": {
                    "permission": "string",
                },
                "serving_endpoint_spec": {
                    "permission": "string",
                },
                "sql_warehouse_spec": {
                    "permission": "string",
                },
                "uc_securable_spec": {
                    "permission": "string",
                    "securable_type": "string",
                },
            }],
        },
        path="string",
        description="string",
        name="string",
        workspace_id="string")
    
    const appsSettingsCustomTemplateResource = new databricks.AppsSettingsCustomTemplate("appsSettingsCustomTemplateResource", {
        gitProvider: "string",
        gitRepo: "string",
        manifest: {
            name: "string",
            version: 0,
            description: "string",
            resourceSpecs: [{
                name: "string",
                description: "string",
                jobSpec: {
                    permission: "string",
                },
                secretSpec: {
                    permission: "string",
                },
                servingEndpointSpec: {
                    permission: "string",
                },
                sqlWarehouseSpec: {
                    permission: "string",
                },
                ucSecurableSpec: {
                    permission: "string",
                    securableType: "string",
                },
            }],
        },
        path: "string",
        description: "string",
        name: "string",
        workspaceId: "string",
    });
    
    type: databricks:AppsSettingsCustomTemplate
    properties:
        description: string
        gitProvider: string
        gitRepo: string
        manifest:
            description: string
            name: string
            resourceSpecs:
                - description: string
                  jobSpec:
                    permission: string
                  name: string
                  secretSpec:
                    permission: string
                  servingEndpointSpec:
                    permission: string
                  sqlWarehouseSpec:
                    permission: string
                  ucSecurableSpec:
                    permission: string
                    securableType: string
            version: 0
        name: string
        path: string
        workspaceId: string
    

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

    GitProvider string
    The Git provider of the template
    GitRepo string
    The Git repository URL that the template resides in
    Manifest AppsSettingsCustomTemplateManifest
    The manifest of the template. It defines fields and default values when installing the template
    Path string
    The path to the template within the Git repository
    Description string
    The description of the template
    Name string
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    WorkspaceId string
    Workspace ID of the resource
    GitProvider string
    The Git provider of the template
    GitRepo string
    The Git repository URL that the template resides in
    Manifest AppsSettingsCustomTemplateManifestArgs
    The manifest of the template. It defines fields and default values when installing the template
    Path string
    The path to the template within the Git repository
    Description string
    The description of the template
    Name string
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    WorkspaceId string
    Workspace ID of the resource
    gitProvider String
    The Git provider of the template
    gitRepo String
    The Git repository URL that the template resides in
    manifest AppsSettingsCustomTemplateManifest
    The manifest of the template. It defines fields and default values when installing the template
    path String
    The path to the template within the Git repository
    description String
    The description of the template
    name String
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    workspaceId String
    Workspace ID of the resource
    gitProvider string
    The Git provider of the template
    gitRepo string
    The Git repository URL that the template resides in
    manifest AppsSettingsCustomTemplateManifest
    The manifest of the template. It defines fields and default values when installing the template
    path string
    The path to the template within the Git repository
    description string
    The description of the template
    name string
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    workspaceId string
    Workspace ID of the resource
    git_provider str
    The Git provider of the template
    git_repo str
    The Git repository URL that the template resides in
    manifest AppsSettingsCustomTemplateManifestArgs
    The manifest of the template. It defines fields and default values when installing the template
    path str
    The path to the template within the Git repository
    description str
    The description of the template
    name str
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    workspace_id str
    Workspace ID of the resource
    gitProvider String
    The Git provider of the template
    gitRepo String
    The Git repository URL that the template resides in
    manifest Property Map
    The manifest of the template. It defines fields and default values when installing the template
    path String
    The path to the template within the Git repository
    description String
    The description of the template
    name String
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    workspaceId String
    Workspace ID of the resource

    Outputs

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

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

    Look up Existing AppsSettingsCustomTemplate Resource

    Get an existing AppsSettingsCustomTemplate 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?: AppsSettingsCustomTemplateState, opts?: CustomResourceOptions): AppsSettingsCustomTemplate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            creator: Optional[str] = None,
            description: Optional[str] = None,
            git_provider: Optional[str] = None,
            git_repo: Optional[str] = None,
            manifest: Optional[AppsSettingsCustomTemplateManifestArgs] = None,
            name: Optional[str] = None,
            path: Optional[str] = None,
            workspace_id: Optional[str] = None) -> AppsSettingsCustomTemplate
    func GetAppsSettingsCustomTemplate(ctx *Context, name string, id IDInput, state *AppsSettingsCustomTemplateState, opts ...ResourceOption) (*AppsSettingsCustomTemplate, error)
    public static AppsSettingsCustomTemplate Get(string name, Input<string> id, AppsSettingsCustomTemplateState? state, CustomResourceOptions? opts = null)
    public static AppsSettingsCustomTemplate get(String name, Output<String> id, AppsSettingsCustomTemplateState state, CustomResourceOptions options)
    resources:  _:    type: databricks:AppsSettingsCustomTemplate    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:
    Creator string
    (string)
    Description string
    The description of the template
    GitProvider string
    The Git provider of the template
    GitRepo string
    The Git repository URL that the template resides in
    Manifest AppsSettingsCustomTemplateManifest
    The manifest of the template. It defines fields and default values when installing the template
    Name string
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    Path string
    The path to the template within the Git repository
    WorkspaceId string
    Workspace ID of the resource
    Creator string
    (string)
    Description string
    The description of the template
    GitProvider string
    The Git provider of the template
    GitRepo string
    The Git repository URL that the template resides in
    Manifest AppsSettingsCustomTemplateManifestArgs
    The manifest of the template. It defines fields and default values when installing the template
    Name string
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    Path string
    The path to the template within the Git repository
    WorkspaceId string
    Workspace ID of the resource
    creator String
    (string)
    description String
    The description of the template
    gitProvider String
    The Git provider of the template
    gitRepo String
    The Git repository URL that the template resides in
    manifest AppsSettingsCustomTemplateManifest
    The manifest of the template. It defines fields and default values when installing the template
    name String
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    path String
    The path to the template within the Git repository
    workspaceId String
    Workspace ID of the resource
    creator string
    (string)
    description string
    The description of the template
    gitProvider string
    The Git provider of the template
    gitRepo string
    The Git repository URL that the template resides in
    manifest AppsSettingsCustomTemplateManifest
    The manifest of the template. It defines fields and default values when installing the template
    name string
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    path string
    The path to the template within the Git repository
    workspaceId string
    Workspace ID of the resource
    creator str
    (string)
    description str
    The description of the template
    git_provider str
    The Git provider of the template
    git_repo str
    The Git repository URL that the template resides in
    manifest AppsSettingsCustomTemplateManifestArgs
    The manifest of the template. It defines fields and default values when installing the template
    name str
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    path str
    The path to the template within the Git repository
    workspace_id str
    Workspace ID of the resource
    creator String
    (string)
    description String
    The description of the template
    gitProvider String
    The Git provider of the template
    gitRepo String
    The Git repository URL that the template resides in
    manifest Property Map
    The manifest of the template. It defines fields and default values when installing the template
    name String
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    path String
    The path to the template within the Git repository
    workspaceId String
    Workspace ID of the resource

    Supporting Types

    AppsSettingsCustomTemplateManifest, AppsSettingsCustomTemplateManifestArgs

    Name string
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    Version int
    The manifest schema version, for now only 1 is allowed
    Description string
    The description of the template
    ResourceSpecs List<AppsSettingsCustomTemplateManifestResourceSpec>
    Name string
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    Version int
    The manifest schema version, for now only 1 is allowed
    Description string
    The description of the template
    ResourceSpecs []AppsSettingsCustomTemplateManifestResourceSpec
    name String
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    version Integer
    The manifest schema version, for now only 1 is allowed
    description String
    The description of the template
    resourceSpecs List<AppsSettingsCustomTemplateManifestResourceSpec>
    name string
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    version number
    The manifest schema version, for now only 1 is allowed
    description string
    The description of the template
    resourceSpecs AppsSettingsCustomTemplateManifestResourceSpec[]
    name str
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    version int
    The manifest schema version, for now only 1 is allowed
    description str
    The description of the template
    resource_specs Sequence[AppsSettingsCustomTemplateManifestResourceSpec]
    name String
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    version Number
    The manifest schema version, for now only 1 is allowed
    description String
    The description of the template
    resourceSpecs List<Property Map>

    AppsSettingsCustomTemplateManifestResourceSpec, AppsSettingsCustomTemplateManifestResourceSpecArgs

    name String
    The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace
    description String
    The description of the template
    jobSpec Property Map
    secretSpec Property Map
    servingEndpointSpec Property Map
    sqlWarehouseSpec Property Map
    ucSecurableSpec Property Map

    AppsSettingsCustomTemplateManifestResourceSpecJobSpec, AppsSettingsCustomTemplateManifestResourceSpecJobSpecArgs

    Permission string
    Permission string
    permission String
    permission string
    permission String

    AppsSettingsCustomTemplateManifestResourceSpecSecretSpec, AppsSettingsCustomTemplateManifestResourceSpecSecretSpecArgs

    Permission string
    Permission string
    permission String
    permission string
    permission String

    AppsSettingsCustomTemplateManifestResourceSpecServingEndpointSpec, AppsSettingsCustomTemplateManifestResourceSpecServingEndpointSpecArgs

    Permission string
    Permission string
    permission String
    permission string
    permission String

    AppsSettingsCustomTemplateManifestResourceSpecSqlWarehouseSpec, AppsSettingsCustomTemplateManifestResourceSpecSqlWarehouseSpecArgs

    Permission string
    Permission string
    permission String
    permission string
    permission String

    AppsSettingsCustomTemplateManifestResourceSpecUcSecurableSpec, AppsSettingsCustomTemplateManifestResourceSpecUcSecurableSpecArgs

    Permission string
    SecurableType string
    . Possible values are: VOLUME
    Permission string
    SecurableType string
    . Possible values are: VOLUME
    permission String
    securableType String
    . Possible values are: VOLUME
    permission string
    securableType string
    . Possible values are: VOLUME
    permission str
    securable_type str
    . Possible values are: VOLUME
    permission String
    securableType String
    . Possible values are: VOLUME

    Import

    As of Pulumi v1.5, resources can be imported through configuration.

    hcl

    import {

    id = “name”

    to = databricks_apps_settings_custom_template.this

    }

    If you are using an older version of Pulumi, import the resource using the pulumi import command as follows:

    $ pulumi import databricks:index/appsSettingsCustomTemplate:AppsSettingsCustomTemplate databricks_apps_settings_custom_template "name"
    

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

    Package Details

    Repository
    databricks pulumi/pulumi-databricks
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the databricks Terraform Provider.
    databricks logo
    Databricks v1.75.0 published on Thursday, Sep 11, 2025 by Pulumi