1. Packages
  2. Packages
  3. Azure Classic
  4. API Docs
  5. kusto
  6. AttachedDatabaseConfiguration

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a Kusto (also known as Azure Data Explorer) Attached Database Configuration

    Example Usage

    Example coming soon!

    Example coming soon!

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const rg = new azure.core.ResourceGroup("rg", {location: "West Europe"});
    const followerCluster = new azure.kusto.Cluster("followerCluster", {
        location: rg.location,
        resourceGroupName: rg.name,
        sku: {
            name: "Dev(No SLA)_Standard_D11_v2",
            capacity: 1,
        },
    });
    const followedCluster = new azure.kusto.Cluster("followedCluster", {
        location: rg.location,
        resourceGroupName: rg.name,
        sku: {
            name: "Dev(No SLA)_Standard_D11_v2",
            capacity: 1,
        },
    });
    const followedDatabase = new azure.kusto.Database("followedDatabase", {
        resourceGroupName: rg.name,
        location: rg.location,
        clusterName: azurerm_kusto_cluster.cluster2.name,
    });
    const exampleDatabase = new azure.kusto.Database("exampleDatabase", {
        resourceGroupName: rg.name,
        location: rg.location,
        clusterName: azurerm_kusto_cluster.cluster2.name,
    });
    const exampleAttachedDatabaseConfiguration = new azure.kusto.AttachedDatabaseConfiguration("exampleAttachedDatabaseConfiguration", {
        resourceGroupName: rg.name,
        location: rg.location,
        clusterName: followerCluster.name,
        clusterResourceId: followedCluster.id,
        databaseName: exampleDatabase.name,
        defaultPrincipalModificationsKind: "Union",
        sharing: {
            externalTablesToExcludes: ["ExternalTable2"],
            externalTablesToIncludes: ["ExternalTable1"],
            materializedViewsToExcludes: ["MaterializedViewTable2"],
            materializedViewsToIncludes: ["MaterializedViewTable1"],
            tablesToExcludes: ["Table2"],
            tablesToIncludes: ["Table1"],
        },
    });
    

    Example coming soon!

    Example coming soon!

    Create AttachedDatabaseConfiguration Resource

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

    Constructor syntax

    new AttachedDatabaseConfiguration(name: string, args: AttachedDatabaseConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def AttachedDatabaseConfiguration(resource_name: str,
                                      args: AttachedDatabaseConfigurationArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def AttachedDatabaseConfiguration(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      cluster_name: Optional[str] = None,
                                      cluster_resource_id: Optional[str] = None,
                                      database_name: Optional[str] = None,
                                      resource_group_name: Optional[str] = None,
                                      default_principal_modification_kind: Optional[str] = None,
                                      location: Optional[str] = None,
                                      name: Optional[str] = None,
                                      sharing: Optional[AttachedDatabaseConfigurationSharingArgs] = None)
    func NewAttachedDatabaseConfiguration(ctx *Context, name string, args AttachedDatabaseConfigurationArgs, opts ...ResourceOption) (*AttachedDatabaseConfiguration, error)
    public AttachedDatabaseConfiguration(string name, AttachedDatabaseConfigurationArgs args, CustomResourceOptions? opts = null)
    public AttachedDatabaseConfiguration(String name, AttachedDatabaseConfigurationArgs args)
    public AttachedDatabaseConfiguration(String name, AttachedDatabaseConfigurationArgs args, CustomResourceOptions options)
    
    type: azure:kusto:AttachedDatabaseConfiguration
    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 AttachedDatabaseConfigurationArgs
    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 AttachedDatabaseConfigurationArgs
    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 AttachedDatabaseConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AttachedDatabaseConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AttachedDatabaseConfigurationArgs
    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 attachedDatabaseConfigurationResource = new Azure.Kusto.AttachedDatabaseConfiguration("attachedDatabaseConfigurationResource", new()
    {
        ClusterName = "string",
        ClusterResourceId = "string",
        DatabaseName = "string",
        ResourceGroupName = "string",
        DefaultPrincipalModificationKind = "string",
        Location = "string",
        Name = "string",
        Sharing = new Azure.Kusto.Inputs.AttachedDatabaseConfigurationSharingArgs
        {
            ExternalTablesToExcludes = new[]
            {
                "string",
            },
            ExternalTablesToIncludes = new[]
            {
                "string",
            },
            MaterializedViewsToExcludes = new[]
            {
                "string",
            },
            MaterializedViewsToIncludes = new[]
            {
                "string",
            },
            TablesToExcludes = new[]
            {
                "string",
            },
            TablesToIncludes = new[]
            {
                "string",
            },
        },
    });
    
    example, err := kusto.NewAttachedDatabaseConfiguration(ctx, "attachedDatabaseConfigurationResource", &kusto.AttachedDatabaseConfigurationArgs{
    	ClusterName:                      pulumi.String("string"),
    	ClusterResourceId:                pulumi.String("string"),
    	DatabaseName:                     pulumi.String("string"),
    	ResourceGroupName:                pulumi.String("string"),
    	DefaultPrincipalModificationKind: pulumi.String("string"),
    	Location:                         pulumi.String("string"),
    	Name:                             pulumi.String("string"),
    	Sharing: &kusto.AttachedDatabaseConfigurationSharingArgs{
    		ExternalTablesToExcludes: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		ExternalTablesToIncludes: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		MaterializedViewsToExcludes: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		MaterializedViewsToIncludes: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		TablesToExcludes: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		TablesToIncludes: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    })
    
    var attachedDatabaseConfigurationResource = new AttachedDatabaseConfiguration("attachedDatabaseConfigurationResource", AttachedDatabaseConfigurationArgs.builder()
        .clusterName("string")
        .clusterResourceId("string")
        .databaseName("string")
        .resourceGroupName("string")
        .defaultPrincipalModificationKind("string")
        .location("string")
        .name("string")
        .sharing(AttachedDatabaseConfigurationSharingArgs.builder()
            .externalTablesToExcludes("string")
            .externalTablesToIncludes("string")
            .materializedViewsToExcludes("string")
            .materializedViewsToIncludes("string")
            .tablesToExcludes("string")
            .tablesToIncludes("string")
            .build())
        .build());
    
    attached_database_configuration_resource = azure.kusto.AttachedDatabaseConfiguration("attachedDatabaseConfigurationResource",
        cluster_name="string",
        cluster_resource_id="string",
        database_name="string",
        resource_group_name="string",
        default_principal_modification_kind="string",
        location="string",
        name="string",
        sharing={
            "external_tables_to_excludes": ["string"],
            "external_tables_to_includes": ["string"],
            "materialized_views_to_excludes": ["string"],
            "materialized_views_to_includes": ["string"],
            "tables_to_excludes": ["string"],
            "tables_to_includes": ["string"],
        })
    
    const attachedDatabaseConfigurationResource = new azure.kusto.AttachedDatabaseConfiguration("attachedDatabaseConfigurationResource", {
        clusterName: "string",
        clusterResourceId: "string",
        databaseName: "string",
        resourceGroupName: "string",
        defaultPrincipalModificationKind: "string",
        location: "string",
        name: "string",
        sharing: {
            externalTablesToExcludes: ["string"],
            externalTablesToIncludes: ["string"],
            materializedViewsToExcludes: ["string"],
            materializedViewsToIncludes: ["string"],
            tablesToExcludes: ["string"],
            tablesToIncludes: ["string"],
        },
    });
    
    type: azure:kusto:AttachedDatabaseConfiguration
    properties:
        clusterName: string
        clusterResourceId: string
        databaseName: string
        defaultPrincipalModificationKind: string
        location: string
        name: string
        resourceGroupName: string
        sharing:
            externalTablesToExcludes:
                - string
            externalTablesToIncludes:
                - string
            materializedViewsToExcludes:
                - string
            materializedViewsToIncludes:
                - string
            tablesToExcludes:
                - string
            tablesToIncludes:
                - string
    

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

    ClusterName string
    Specifies the name of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    ClusterResourceId string
    The resource id of the cluster where the databases you would like to attach reside.
    DatabaseName string
    The name of the database which you would like to attach, use * if you want to follow all current and future databases.
    ResourceGroupName string
    Specifies the resource group of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    DefaultPrincipalModificationKind string
    The default principals modification kind. Valid values are: None (default), Replace and Union.
    Location string
    Specifies the location of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    Name string
    The name of the Kusto Attached Database Configuration to create. Changing this forces a new resource to be created.
    Sharing AttachedDatabaseConfigurationSharing
    A sharing block as defined below.
    ClusterName string
    Specifies the name of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    ClusterResourceId string
    The resource id of the cluster where the databases you would like to attach reside.
    DatabaseName string
    The name of the database which you would like to attach, use * if you want to follow all current and future databases.
    ResourceGroupName string
    Specifies the resource group of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    DefaultPrincipalModificationKind string
    The default principals modification kind. Valid values are: None (default), Replace and Union.
    Location string
    Specifies the location of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    Name string
    The name of the Kusto Attached Database Configuration to create. Changing this forces a new resource to be created.
    Sharing AttachedDatabaseConfigurationSharingArgs
    A sharing block as defined below.
    clusterName String
    Specifies the name of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    clusterResourceId String
    The resource id of the cluster where the databases you would like to attach reside.
    databaseName String
    The name of the database which you would like to attach, use * if you want to follow all current and future databases.
    resourceGroupName String
    Specifies the resource group of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    defaultPrincipalModificationKind String
    The default principals modification kind. Valid values are: None (default), Replace and Union.
    location String
    Specifies the location of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    name String
    The name of the Kusto Attached Database Configuration to create. Changing this forces a new resource to be created.
    sharing AttachedDatabaseConfigurationSharing
    A sharing block as defined below.
    clusterName string
    Specifies the name of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    clusterResourceId string
    The resource id of the cluster where the databases you would like to attach reside.
    databaseName string
    The name of the database which you would like to attach, use * if you want to follow all current and future databases.
    resourceGroupName string
    Specifies the resource group of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    defaultPrincipalModificationKind string
    The default principals modification kind. Valid values are: None (default), Replace and Union.
    location string
    Specifies the location of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    name string
    The name of the Kusto Attached Database Configuration to create. Changing this forces a new resource to be created.
    sharing AttachedDatabaseConfigurationSharing
    A sharing block as defined below.
    cluster_name str
    Specifies the name of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    cluster_resource_id str
    The resource id of the cluster where the databases you would like to attach reside.
    database_name str
    The name of the database which you would like to attach, use * if you want to follow all current and future databases.
    resource_group_name str
    Specifies the resource group of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    default_principal_modification_kind str
    The default principals modification kind. Valid values are: None (default), Replace and Union.
    location str
    Specifies the location of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    name str
    The name of the Kusto Attached Database Configuration to create. Changing this forces a new resource to be created.
    sharing AttachedDatabaseConfigurationSharingArgs
    A sharing block as defined below.
    clusterName String
    Specifies the name of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    clusterResourceId String
    The resource id of the cluster where the databases you would like to attach reside.
    databaseName String
    The name of the database which you would like to attach, use * if you want to follow all current and future databases.
    resourceGroupName String
    Specifies the resource group of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    defaultPrincipalModificationKind String
    The default principals modification kind. Valid values are: None (default), Replace and Union.
    location String
    Specifies the location of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    name String
    The name of the Kusto Attached Database Configuration to create. Changing this forces a new resource to be created.
    sharing Property Map
    A sharing block as defined below.

    Outputs

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

    AttachedDatabaseNames List<string>
    The list of databases from the cluster_resource_id which are currently attached to the cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    AttachedDatabaseNames []string
    The list of databases from the cluster_resource_id which are currently attached to the cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    attachedDatabaseNames List<String>
    The list of databases from the cluster_resource_id which are currently attached to the cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    attachedDatabaseNames string[]
    The list of databases from the cluster_resource_id which are currently attached to the cluster.
    id string
    The provider-assigned unique ID for this managed resource.
    attached_database_names Sequence[str]
    The list of databases from the cluster_resource_id which are currently attached to the cluster.
    id str
    The provider-assigned unique ID for this managed resource.
    attachedDatabaseNames List<String>
    The list of databases from the cluster_resource_id which are currently attached to the cluster.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing AttachedDatabaseConfiguration Resource

    Get an existing AttachedDatabaseConfiguration 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?: AttachedDatabaseConfigurationState, opts?: CustomResourceOptions): AttachedDatabaseConfiguration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            attached_database_names: Optional[Sequence[str]] = None,
            cluster_name: Optional[str] = None,
            cluster_resource_id: Optional[str] = None,
            database_name: Optional[str] = None,
            default_principal_modification_kind: Optional[str] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            sharing: Optional[AttachedDatabaseConfigurationSharingArgs] = None) -> AttachedDatabaseConfiguration
    func GetAttachedDatabaseConfiguration(ctx *Context, name string, id IDInput, state *AttachedDatabaseConfigurationState, opts ...ResourceOption) (*AttachedDatabaseConfiguration, error)
    public static AttachedDatabaseConfiguration Get(string name, Input<string> id, AttachedDatabaseConfigurationState? state, CustomResourceOptions? opts = null)
    public static AttachedDatabaseConfiguration get(String name, Output<String> id, AttachedDatabaseConfigurationState state, CustomResourceOptions options)
    resources:  _:    type: azure:kusto:AttachedDatabaseConfiguration    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:
    AttachedDatabaseNames List<string>
    The list of databases from the cluster_resource_id which are currently attached to the cluster.
    ClusterName string
    Specifies the name of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    ClusterResourceId string
    The resource id of the cluster where the databases you would like to attach reside.
    DatabaseName string
    The name of the database which you would like to attach, use * if you want to follow all current and future databases.
    DefaultPrincipalModificationKind string
    The default principals modification kind. Valid values are: None (default), Replace and Union.
    Location string
    Specifies the location of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    Name string
    The name of the Kusto Attached Database Configuration to create. Changing this forces a new resource to be created.
    ResourceGroupName string
    Specifies the resource group of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    Sharing AttachedDatabaseConfigurationSharing
    A sharing block as defined below.
    AttachedDatabaseNames []string
    The list of databases from the cluster_resource_id which are currently attached to the cluster.
    ClusterName string
    Specifies the name of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    ClusterResourceId string
    The resource id of the cluster where the databases you would like to attach reside.
    DatabaseName string
    The name of the database which you would like to attach, use * if you want to follow all current and future databases.
    DefaultPrincipalModificationKind string
    The default principals modification kind. Valid values are: None (default), Replace and Union.
    Location string
    Specifies the location of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    Name string
    The name of the Kusto Attached Database Configuration to create. Changing this forces a new resource to be created.
    ResourceGroupName string
    Specifies the resource group of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    Sharing AttachedDatabaseConfigurationSharingArgs
    A sharing block as defined below.
    attachedDatabaseNames List<String>
    The list of databases from the cluster_resource_id which are currently attached to the cluster.
    clusterName String
    Specifies the name of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    clusterResourceId String
    The resource id of the cluster where the databases you would like to attach reside.
    databaseName String
    The name of the database which you would like to attach, use * if you want to follow all current and future databases.
    defaultPrincipalModificationKind String
    The default principals modification kind. Valid values are: None (default), Replace and Union.
    location String
    Specifies the location of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    name String
    The name of the Kusto Attached Database Configuration to create. Changing this forces a new resource to be created.
    resourceGroupName String
    Specifies the resource group of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    sharing AttachedDatabaseConfigurationSharing
    A sharing block as defined below.
    attachedDatabaseNames string[]
    The list of databases from the cluster_resource_id which are currently attached to the cluster.
    clusterName string
    Specifies the name of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    clusterResourceId string
    The resource id of the cluster where the databases you would like to attach reside.
    databaseName string
    The name of the database which you would like to attach, use * if you want to follow all current and future databases.
    defaultPrincipalModificationKind string
    The default principals modification kind. Valid values are: None (default), Replace and Union.
    location string
    Specifies the location of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    name string
    The name of the Kusto Attached Database Configuration to create. Changing this forces a new resource to be created.
    resourceGroupName string
    Specifies the resource group of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    sharing AttachedDatabaseConfigurationSharing
    A sharing block as defined below.
    attached_database_names Sequence[str]
    The list of databases from the cluster_resource_id which are currently attached to the cluster.
    cluster_name str
    Specifies the name of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    cluster_resource_id str
    The resource id of the cluster where the databases you would like to attach reside.
    database_name str
    The name of the database which you would like to attach, use * if you want to follow all current and future databases.
    default_principal_modification_kind str
    The default principals modification kind. Valid values are: None (default), Replace and Union.
    location str
    Specifies the location of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    name str
    The name of the Kusto Attached Database Configuration to create. Changing this forces a new resource to be created.
    resource_group_name str
    Specifies the resource group of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    sharing AttachedDatabaseConfigurationSharingArgs
    A sharing block as defined below.
    attachedDatabaseNames List<String>
    The list of databases from the cluster_resource_id which are currently attached to the cluster.
    clusterName String
    Specifies the name of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    clusterResourceId String
    The resource id of the cluster where the databases you would like to attach reside.
    databaseName String
    The name of the database which you would like to attach, use * if you want to follow all current and future databases.
    defaultPrincipalModificationKind String
    The default principals modification kind. Valid values are: None (default), Replace and Union.
    location String
    Specifies the location of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    name String
    The name of the Kusto Attached Database Configuration to create. Changing this forces a new resource to be created.
    resourceGroupName String
    Specifies the resource group of the Kusto Cluster for which the configuration will be created. Changing this forces a new resource to be created.
    sharing Property Map
    A sharing block as defined below.

    Supporting Types

    AttachedDatabaseConfigurationSharing, AttachedDatabaseConfigurationSharingArgs

    ExternalTablesToExcludes List<string>
    List of external tables exclude from the follower database.
    ExternalTablesToIncludes List<string>
    List of external tables to include in the follower database.
    MaterializedViewsToExcludes List<string>
    List of materialized views exclude from the follower database.
    MaterializedViewsToIncludes List<string>
    List of materialized views to include in the follower database.
    TablesToExcludes List<string>
    List of tables to exclude from the follower database.
    TablesToIncludes List<string>
    List of tables to include in the follower database.
    ExternalTablesToExcludes []string
    List of external tables exclude from the follower database.
    ExternalTablesToIncludes []string
    List of external tables to include in the follower database.
    MaterializedViewsToExcludes []string
    List of materialized views exclude from the follower database.
    MaterializedViewsToIncludes []string
    List of materialized views to include in the follower database.
    TablesToExcludes []string
    List of tables to exclude from the follower database.
    TablesToIncludes []string
    List of tables to include in the follower database.
    externalTablesToExcludes List<String>
    List of external tables exclude from the follower database.
    externalTablesToIncludes List<String>
    List of external tables to include in the follower database.
    materializedViewsToExcludes List<String>
    List of materialized views exclude from the follower database.
    materializedViewsToIncludes List<String>
    List of materialized views to include in the follower database.
    tablesToExcludes List<String>
    List of tables to exclude from the follower database.
    tablesToIncludes List<String>
    List of tables to include in the follower database.
    externalTablesToExcludes string[]
    List of external tables exclude from the follower database.
    externalTablesToIncludes string[]
    List of external tables to include in the follower database.
    materializedViewsToExcludes string[]
    List of materialized views exclude from the follower database.
    materializedViewsToIncludes string[]
    List of materialized views to include in the follower database.
    tablesToExcludes string[]
    List of tables to exclude from the follower database.
    tablesToIncludes string[]
    List of tables to include in the follower database.
    external_tables_to_excludes Sequence[str]
    List of external tables exclude from the follower database.
    external_tables_to_includes Sequence[str]
    List of external tables to include in the follower database.
    materialized_views_to_excludes Sequence[str]
    List of materialized views exclude from the follower database.
    materialized_views_to_includes Sequence[str]
    List of materialized views to include in the follower database.
    tables_to_excludes Sequence[str]
    List of tables to exclude from the follower database.
    tables_to_includes Sequence[str]
    List of tables to include in the follower database.
    externalTablesToExcludes List<String>
    List of external tables exclude from the follower database.
    externalTablesToIncludes List<String>
    List of external tables to include in the follower database.
    materializedViewsToExcludes List<String>
    List of materialized views exclude from the follower database.
    materializedViewsToIncludes List<String>
    List of materialized views to include in the follower database.
    tablesToExcludes List<String>
    List of tables to exclude from the follower database.
    tablesToIncludes List<String>
    List of tables to include in the follower database.

    Import

    Kusto Attached Database Configurations can be imported using the resource id, e.g.

     $ pulumi import azure:kusto/attachedDatabaseConfiguration:AttachedDatabaseConfiguration example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Kusto/Clusters/cluster1/AttachedDatabaseConfigurations/configuration1
    

    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.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial