We recommend using Azure Native.
Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Use this data source to access information about an existing Kusto (also known as Azure Data Explorer) Cluster
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var example = Output.Create(Azure.Kusto.GetCluster.InvokeAsync(new Azure.Kusto.GetClusterArgs
{
Name = "kustocluster",
ResourceGroupName = "test_resource_group",
}));
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/kusto"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := kusto.LookupCluster(ctx, &kusto.LookupClusterArgs{
Name: "kustocluster",
ResourceGroupName: "test_resource_group",
}, nil)
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = pulumi.output(azure.kusto.getCluster({
name: "kustocluster",
resourceGroupName: "test_resource_group",
}));
import pulumi
import pulumi_azure as azure
example = azure.kusto.get_cluster(name="kustocluster",
resource_group_name="test_resource_group")
Example coming soon!
Using getCluster
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getCluster(args: GetClusterArgs, opts?: InvokeOptions): Promise<GetClusterResult>
function getClusterOutput(args: GetClusterOutputArgs, opts?: InvokeOptions): Output<GetClusterResult>def get_cluster(name: Optional[str] = None,
resource_group_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetClusterResult
def get_cluster_output(name: Optional[pulumi.Input[str]] = None,
resource_group_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetClusterResult]func LookupCluster(ctx *Context, args *LookupClusterArgs, opts ...InvokeOption) (*LookupClusterResult, error)
func LookupClusterOutput(ctx *Context, args *LookupClusterOutputArgs, opts ...InvokeOption) LookupClusterResultOutput> Note: This function is named LookupCluster in the Go SDK.
public static class GetCluster
{
public static Task<GetClusterResult> InvokeAsync(GetClusterArgs args, InvokeOptions? opts = null)
public static Output<GetClusterResult> Invoke(GetClusterInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetClusterResult> getCluster(GetClusterArgs args, InvokeOptions options)
public static Output<GetClusterResult> getCluster(GetClusterArgs args, InvokeOptions options)
fn::invoke:
function: azure:kusto/getCluster:getCluster
arguments:
# arguments dictionaryThe following arguments are supported:
- Name string
- Specifies the name of the Kusto Cluster.
- Resource
Group stringName - The name of the Resource Group where the Kusto Cluster exists.
- Name string
- Specifies the name of the Kusto Cluster.
- Resource
Group stringName - The name of the Resource Group where the Kusto Cluster exists.
- name String
- Specifies the name of the Kusto Cluster.
- resource
Group StringName - The name of the Resource Group where the Kusto Cluster exists.
- name string
- Specifies the name of the Kusto Cluster.
- resource
Group stringName - The name of the Resource Group where the Kusto Cluster exists.
- name str
- Specifies the name of the Kusto Cluster.
- resource_
group_ strname - The name of the Resource Group where the Kusto Cluster exists.
- name String
- Specifies the name of the Kusto Cluster.
- resource
Group StringName - The name of the Resource Group where the Kusto Cluster exists.
getCluster Result
The following output properties are available:
- Data
Ingestion stringUri - The Kusto Cluster URI to be used for data ingestion.
- Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- Name string
- Resource
Group stringName - Dictionary<string, string>
- Uri string
- The FQDN of the Azure Kusto Cluster.
- Data
Ingestion stringUri - The Kusto Cluster URI to be used for data ingestion.
- Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- Name string
- Resource
Group stringName - map[string]string
- Uri string
- The FQDN of the Azure Kusto Cluster.
- data
Ingestion StringUri - The Kusto Cluster URI to be used for data ingestion.
- id String
- The provider-assigned unique ID for this managed resource.
- location String
- name String
- resource
Group StringName - Map<String,String>
- uri String
- The FQDN of the Azure Kusto Cluster.
- data
Ingestion stringUri - The Kusto Cluster URI to be used for data ingestion.
- id string
- The provider-assigned unique ID for this managed resource.
- location string
- name string
- resource
Group stringName - {[key: string]: string}
- uri string
- The FQDN of the Azure Kusto Cluster.
- data_
ingestion_ struri - The Kusto Cluster URI to be used for data ingestion.
- id str
- The provider-assigned unique ID for this managed resource.
- location str
- name str
- resource_
group_ strname - Mapping[str, str]
- uri str
- The FQDN of the Azure Kusto Cluster.
- data
Ingestion StringUri - The Kusto Cluster URI to be used for data ingestion.
- id String
- The provider-assigned unique ID for this managed resource.
- location String
- name String
- resource
Group StringName - Map<String>
- uri String
- The FQDN of the Azure Kusto Cluster.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.
We recommend using Azure Native.
Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
