1. Packages
  2. Azure Classic
  3. API Docs
  4. stack
  5. getHciCluster

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.stack.getHciCluster

Explore with Pulumi AI

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

Use this data source to access information about an existing Azure Stack HCI Cluster instance.

Example Usage

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

const example = azure.stack.getHciCluster({
    name: "existing",
    resourceGroupName: "existing",
});
export const id = example.then(example => example.id);
export const location = example.then(example => example.location);
export const clientId = example.then(example => example.clientId);
Copy
import pulumi
import pulumi_azure as azure

example = azure.stack.get_hci_cluster(name="existing",
    resource_group_name="existing")
pulumi.export("id", example.id)
pulumi.export("location", example.location)
pulumi.export("clientId", example.client_id)
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/stack"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := stack.LookupHciCluster(ctx, &stack.LookupHciClusterArgs{
			Name:              "existing",
			ResourceGroupName: "existing",
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("id", example.Id)
		ctx.Export("location", example.Location)
		ctx.Export("clientId", example.ClientId)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = Azure.Stack.GetHciCluster.Invoke(new()
    {
        Name = "existing",
        ResourceGroupName = "existing",
    });

    return new Dictionary<string, object?>
    {
        ["id"] = example.Apply(getHciClusterResult => getHciClusterResult.Id),
        ["location"] = example.Apply(getHciClusterResult => getHciClusterResult.Location),
        ["clientId"] = example.Apply(getHciClusterResult => getHciClusterResult.ClientId),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.stack.StackFunctions;
import com.pulumi.azure.stack.inputs.GetHciClusterArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var example = StackFunctions.getHciCluster(GetHciClusterArgs.builder()
            .name("existing")
            .resourceGroupName("existing")
            .build());

        ctx.export("id", example.applyValue(getHciClusterResult -> getHciClusterResult.id()));
        ctx.export("location", example.applyValue(getHciClusterResult -> getHciClusterResult.location()));
        ctx.export("clientId", example.applyValue(getHciClusterResult -> getHciClusterResult.clientId()));
    }
}
Copy
variables:
  example:
    fn::invoke:
      function: azure:stack:getHciCluster
      arguments:
        name: existing
        resourceGroupName: existing
outputs:
  id: ${example.id}
  location: ${example.location}
  clientId: ${example.clientId}
Copy

Using getHciCluster

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 getHciCluster(args: GetHciClusterArgs, opts?: InvokeOptions): Promise<GetHciClusterResult>
function getHciClusterOutput(args: GetHciClusterOutputArgs, opts?: InvokeOptions): Output<GetHciClusterResult>
Copy
def get_hci_cluster(name: Optional[str] = None,
                    resource_group_name: Optional[str] = None,
                    opts: Optional[InvokeOptions] = None) -> GetHciClusterResult
def get_hci_cluster_output(name: Optional[pulumi.Input[str]] = None,
                    resource_group_name: Optional[pulumi.Input[str]] = None,
                    opts: Optional[InvokeOptions] = None) -> Output[GetHciClusterResult]
Copy
func LookupHciCluster(ctx *Context, args *LookupHciClusterArgs, opts ...InvokeOption) (*LookupHciClusterResult, error)
func LookupHciClusterOutput(ctx *Context, args *LookupHciClusterOutputArgs, opts ...InvokeOption) LookupHciClusterResultOutput
Copy

> Note: This function is named LookupHciCluster in the Go SDK.

public static class GetHciCluster 
{
    public static Task<GetHciClusterResult> InvokeAsync(GetHciClusterArgs args, InvokeOptions? opts = null)
    public static Output<GetHciClusterResult> Invoke(GetHciClusterInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetHciClusterResult> getHciCluster(GetHciClusterArgs args, InvokeOptions options)
public static Output<GetHciClusterResult> getHciCluster(GetHciClusterArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: azure:stack/getHciCluster:getHciCluster
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Name This property is required. string
The name of the Azure Stack HCI Cluster.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Azure Stack HCI Cluster exists.
Name This property is required. string
The name of the Azure Stack HCI Cluster.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Azure Stack HCI Cluster exists.
name This property is required. String
The name of the Azure Stack HCI Cluster.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Azure Stack HCI Cluster exists.
name This property is required. string
The name of the Azure Stack HCI Cluster.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Azure Stack HCI Cluster exists.
name This property is required. str
The name of the Azure Stack HCI Cluster.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Resource Group where the Azure Stack HCI Cluster exists.
name This property is required. String
The name of the Azure Stack HCI Cluster.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Azure Stack HCI Cluster exists.

getHciCluster Result

The following output properties are available:

AutomanageConfigurationId string
The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
ClientId string
The Client ID of the Azure Active Directory used by the Azure Stack HCI Cluster.
CloudId string
An immutable UUID for the Azure Stack HCI Cluster.
Id string
The provider-assigned unique ID for this managed resource.
Identities List<GetHciClusterIdentity>
An identity block as defined below.
Location string
The Azure Region where the Azure Stack HCI Cluster exists.
Name string
ResourceGroupName string
ResourceProviderObjectId string
The object ID of the Resource Provider Service Principal.
ServiceEndpoint string
The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
Tags Dictionary<string, string>
A mapping of tags assigned to the Azure Stack HCI Cluster.
TenantId string
The Tenant ID associated with this Managed Service Identity.
AutomanageConfigurationId string
The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
ClientId string
The Client ID of the Azure Active Directory used by the Azure Stack HCI Cluster.
CloudId string
An immutable UUID for the Azure Stack HCI Cluster.
Id string
The provider-assigned unique ID for this managed resource.
Identities []GetHciClusterIdentity
An identity block as defined below.
Location string
The Azure Region where the Azure Stack HCI Cluster exists.
Name string
ResourceGroupName string
ResourceProviderObjectId string
The object ID of the Resource Provider Service Principal.
ServiceEndpoint string
The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
Tags map[string]string
A mapping of tags assigned to the Azure Stack HCI Cluster.
TenantId string
The Tenant ID associated with this Managed Service Identity.
automanageConfigurationId String
The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
clientId String
The Client ID of the Azure Active Directory used by the Azure Stack HCI Cluster.
cloudId String
An immutable UUID for the Azure Stack HCI Cluster.
id String
The provider-assigned unique ID for this managed resource.
identities List<GetHciClusterIdentity>
An identity block as defined below.
location String
The Azure Region where the Azure Stack HCI Cluster exists.
name String
resourceGroupName String
resourceProviderObjectId String
The object ID of the Resource Provider Service Principal.
serviceEndpoint String
The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
tags Map<String,String>
A mapping of tags assigned to the Azure Stack HCI Cluster.
tenantId String
The Tenant ID associated with this Managed Service Identity.
automanageConfigurationId string
The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
clientId string
The Client ID of the Azure Active Directory used by the Azure Stack HCI Cluster.
cloudId string
An immutable UUID for the Azure Stack HCI Cluster.
id string
The provider-assigned unique ID for this managed resource.
identities GetHciClusterIdentity[]
An identity block as defined below.
location string
The Azure Region where the Azure Stack HCI Cluster exists.
name string
resourceGroupName string
resourceProviderObjectId string
The object ID of the Resource Provider Service Principal.
serviceEndpoint string
The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
tags {[key: string]: string}
A mapping of tags assigned to the Azure Stack HCI Cluster.
tenantId string
The Tenant ID associated with this Managed Service Identity.
automanage_configuration_id str
The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
client_id str
The Client ID of the Azure Active Directory used by the Azure Stack HCI Cluster.
cloud_id str
An immutable UUID for the Azure Stack HCI Cluster.
id str
The provider-assigned unique ID for this managed resource.
identities Sequence[GetHciClusterIdentity]
An identity block as defined below.
location str
The Azure Region where the Azure Stack HCI Cluster exists.
name str
resource_group_name str
resource_provider_object_id str
The object ID of the Resource Provider Service Principal.
service_endpoint str
The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
tags Mapping[str, str]
A mapping of tags assigned to the Azure Stack HCI Cluster.
tenant_id str
The Tenant ID associated with this Managed Service Identity.
automanageConfigurationId String
The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
clientId String
The Client ID of the Azure Active Directory used by the Azure Stack HCI Cluster.
cloudId String
An immutable UUID for the Azure Stack HCI Cluster.
id String
The provider-assigned unique ID for this managed resource.
identities List<Property Map>
An identity block as defined below.
location String
The Azure Region where the Azure Stack HCI Cluster exists.
name String
resourceGroupName String
resourceProviderObjectId String
The object ID of the Resource Provider Service Principal.
serviceEndpoint String
The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
tags Map<String>
A mapping of tags assigned to the Azure Stack HCI Cluster.
tenantId String
The Tenant ID associated with this Managed Service Identity.

Supporting Types

GetHciClusterIdentity

PrincipalId This property is required. string
The Principal ID associated with this Managed Service Identity.
TenantId This property is required. string
The Tenant ID associated with this Managed Service Identity.
Type This property is required. string
(Required) The type of Managed Service Identity configured on the Azure Stack HCI Cluster.
PrincipalId This property is required. string
The Principal ID associated with this Managed Service Identity.
TenantId This property is required. string
The Tenant ID associated with this Managed Service Identity.
Type This property is required. string
(Required) The type of Managed Service Identity configured on the Azure Stack HCI Cluster.
principalId This property is required. String
The Principal ID associated with this Managed Service Identity.
tenantId This property is required. String
The Tenant ID associated with this Managed Service Identity.
type This property is required. String
(Required) The type of Managed Service Identity configured on the Azure Stack HCI Cluster.
principalId This property is required. string
The Principal ID associated with this Managed Service Identity.
tenantId This property is required. string
The Tenant ID associated with this Managed Service Identity.
type This property is required. string
(Required) The type of Managed Service Identity configured on the Azure Stack HCI Cluster.
principal_id This property is required. str
The Principal ID associated with this Managed Service Identity.
tenant_id This property is required. str
The Tenant ID associated with this Managed Service Identity.
type This property is required. str
(Required) The type of Managed Service Identity configured on the Azure Stack HCI Cluster.
principalId This property is required. String
The Principal ID associated with this Managed Service Identity.
tenantId This property is required. String
The Tenant ID associated with this Managed Service Identity.
type This property is required. String
(Required) The type of Managed Service Identity configured on the Azure Stack HCI Cluster.

Package Details

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

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi