We recommend using Azure Native.
azure.stack.HciCluster
Explore with Pulumi AI
Manages an Azure Stack HCI Cluster.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
import * as azuread from "@pulumi/azuread";
const example = azuread.getApplication({
    displayName: "Allowed resource types",
});
const current = azure.core.getClientConfig({});
const exampleResourceGroup = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleHciCluster = new azure.stack.HciCluster("example", {
    name: "example-cluster",
    resourceGroupName: exampleResourceGroup.name,
    location: exampleResourceGroup.location,
    clientId: example.then(example => example.applicationId),
    tenantId: current.then(current => current.tenantId),
    identity: {
        type: "SystemAssigned",
    },
});
import pulumi
import pulumi_azure as azure
import pulumi_azuread as azuread
example = azuread.get_application(display_name="Allowed resource types")
current = azure.core.get_client_config()
example_resource_group = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_hci_cluster = azure.stack.HciCluster("example",
    name="example-cluster",
    resource_group_name=example_resource_group.name,
    location=example_resource_group.location,
    client_id=example.application_id,
    tenant_id=current.tenant_id,
    identity={
        "type": "SystemAssigned",
    })
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/stack"
	"github.com/pulumi/pulumi-azuread/sdk/v5/go/azuread"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := azuread.LookupApplication(ctx, &azuread.LookupApplicationArgs{
			DisplayName: pulumi.StringRef("Allowed resource types"),
		}, nil)
		if err != nil {
			return err
		}
		current, err := core.GetClientConfig(ctx, map[string]interface{}{}, nil)
		if err != nil {
			return err
		}
		exampleResourceGroup, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		_, err = stack.NewHciCluster(ctx, "example", &stack.HciClusterArgs{
			Name:              pulumi.String("example-cluster"),
			ResourceGroupName: exampleResourceGroup.Name,
			Location:          exampleResourceGroup.Location,
			ClientId:          pulumi.String(example.ApplicationId),
			TenantId:          pulumi.String(current.TenantId),
			Identity: &stack.HciClusterIdentityArgs{
				Type: pulumi.String("SystemAssigned"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
using AzureAD = Pulumi.AzureAD;
return await Deployment.RunAsync(() => 
{
    var example = AzureAD.GetApplication.Invoke(new()
    {
        DisplayName = "Allowed resource types",
    });
    var current = Azure.Core.GetClientConfig.Invoke();
    var exampleResourceGroup = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });
    var exampleHciCluster = new Azure.Stack.HciCluster("example", new()
    {
        Name = "example-cluster",
        ResourceGroupName = exampleResourceGroup.Name,
        Location = exampleResourceGroup.Location,
        ClientId = example.Apply(getApplicationResult => getApplicationResult.ApplicationId),
        TenantId = current.Apply(getClientConfigResult => getClientConfigResult.TenantId),
        Identity = new Azure.Stack.Inputs.HciClusterIdentityArgs
        {
            Type = "SystemAssigned",
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azuread.AzureadFunctions;
import com.pulumi.azuread.inputs.GetApplicationArgs;
import com.pulumi.azure.core.CoreFunctions;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.stack.HciCluster;
import com.pulumi.azure.stack.HciClusterArgs;
import com.pulumi.azure.stack.inputs.HciClusterIdentityArgs;
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 = AzureadFunctions.getApplication(GetApplicationArgs.builder()
            .displayName("Allowed resource types")
            .build());
        final var current = CoreFunctions.getClientConfig();
        var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());
        var exampleHciCluster = new HciCluster("exampleHciCluster", HciClusterArgs.builder()
            .name("example-cluster")
            .resourceGroupName(exampleResourceGroup.name())
            .location(exampleResourceGroup.location())
            .clientId(example.applyValue(getApplicationResult -> getApplicationResult.applicationId()))
            .tenantId(current.applyValue(getClientConfigResult -> getClientConfigResult.tenantId()))
            .identity(HciClusterIdentityArgs.builder()
                .type("SystemAssigned")
                .build())
            .build());
    }
}
resources:
  exampleResourceGroup:
    type: azure:core:ResourceGroup
    name: example
    properties:
      name: example-resources
      location: West Europe
  exampleHciCluster:
    type: azure:stack:HciCluster
    name: example
    properties:
      name: example-cluster
      resourceGroupName: ${exampleResourceGroup.name}
      location: ${exampleResourceGroup.location}
      clientId: ${example.applicationId}
      tenantId: ${current.tenantId}
      identity:
        type: SystemAssigned
variables:
  example:
    fn::invoke:
      function: azuread:getApplication
      arguments:
        displayName: Allowed resource types
  current:
    fn::invoke:
      function: azure:core:getClientConfig
      arguments: {}
Create HciCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new HciCluster(name: string, args: HciClusterArgs, opts?: CustomResourceOptions);@overload
def HciCluster(resource_name: str,
               args: HciClusterArgs,
               opts: Optional[ResourceOptions] = None)
@overload
def HciCluster(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               resource_group_name: Optional[str] = None,
               automanage_configuration_id: Optional[str] = None,
               client_id: Optional[str] = None,
               identity: Optional[HciClusterIdentityArgs] = None,
               location: Optional[str] = None,
               name: Optional[str] = None,
               tags: Optional[Mapping[str, str]] = None,
               tenant_id: Optional[str] = None)func NewHciCluster(ctx *Context, name string, args HciClusterArgs, opts ...ResourceOption) (*HciCluster, error)public HciCluster(string name, HciClusterArgs args, CustomResourceOptions? opts = null)
public HciCluster(String name, HciClusterArgs args)
public HciCluster(String name, HciClusterArgs args, CustomResourceOptions options)
type: azure:stack:HciCluster
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 HciClusterArgs
- 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 HciClusterArgs
- 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 HciClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HciClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HciClusterArgs
- 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 hciClusterResource = new Azure.Stack.HciCluster("hciClusterResource", new()
{
    ResourceGroupName = "string",
    AutomanageConfigurationId = "string",
    ClientId = "string",
    Identity = new Azure.Stack.Inputs.HciClusterIdentityArgs
    {
        Type = "string",
        PrincipalId = "string",
        TenantId = "string",
    },
    Location = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
    TenantId = "string",
});
example, err := stack.NewHciCluster(ctx, "hciClusterResource", &stack.HciClusterArgs{
	ResourceGroupName:         pulumi.String("string"),
	AutomanageConfigurationId: pulumi.String("string"),
	ClientId:                  pulumi.String("string"),
	Identity: &stack.HciClusterIdentityArgs{
		Type:        pulumi.String("string"),
		PrincipalId: pulumi.String("string"),
		TenantId:    pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	Name:     pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	TenantId: pulumi.String("string"),
})
var hciClusterResource = new HciCluster("hciClusterResource", HciClusterArgs.builder()
    .resourceGroupName("string")
    .automanageConfigurationId("string")
    .clientId("string")
    .identity(HciClusterIdentityArgs.builder()
        .type("string")
        .principalId("string")
        .tenantId("string")
        .build())
    .location("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .tenantId("string")
    .build());
hci_cluster_resource = azure.stack.HciCluster("hciClusterResource",
    resource_group_name="string",
    automanage_configuration_id="string",
    client_id="string",
    identity={
        "type": "string",
        "principal_id": "string",
        "tenant_id": "string",
    },
    location="string",
    name="string",
    tags={
        "string": "string",
    },
    tenant_id="string")
const hciClusterResource = new azure.stack.HciCluster("hciClusterResource", {
    resourceGroupName: "string",
    automanageConfigurationId: "string",
    clientId: "string",
    identity: {
        type: "string",
        principalId: "string",
        tenantId: "string",
    },
    location: "string",
    name: "string",
    tags: {
        string: "string",
    },
    tenantId: "string",
});
type: azure:stack:HciCluster
properties:
    automanageConfigurationId: string
    clientId: string
    identity:
        principalId: string
        tenantId: string
        type: string
    location: string
    name: string
    resourceGroupName: string
    tags:
        string: string
    tenantId: string
HciCluster 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 HciCluster resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- AutomanageConfiguration stringId 
- The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- ClientId string
- The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- Identity
HciCluster Identity 
- An identityblock as defined below.
- Location string
- The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- Name string
- The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Azure Stack HCI Cluster.
- TenantId string
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- ResourceGroup stringName 
- The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- AutomanageConfiguration stringId 
- The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- ClientId string
- The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- Identity
HciCluster Identity Args 
- An identityblock as defined below.
- Location string
- The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- Name string
- The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags which should be assigned to the Azure Stack HCI Cluster.
- TenantId string
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- resourceGroup StringName 
- The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- automanageConfiguration StringId 
- The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- clientId String
- The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- identity
HciCluster Identity 
- An identityblock as defined below.
- location String
- The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- name String
- The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Azure Stack HCI Cluster.
- tenantId String
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- resourceGroup stringName 
- The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- automanageConfiguration stringId 
- The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- clientId string
- The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- identity
HciCluster Identity 
- An identityblock as defined below.
- location string
- The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- name string
- The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Azure Stack HCI Cluster.
- tenantId string
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- resource_group_ strname 
- The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- automanage_configuration_ strid 
- The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- client_id str
- The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- identity
HciCluster Identity Args 
- An identityblock as defined below.
- location str
- The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- name str
- The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Azure Stack HCI Cluster.
- tenant_id str
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- resourceGroup StringName 
- The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- automanageConfiguration StringId 
- The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- clientId String
- The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- identity Property Map
- An identityblock as defined below.
- location String
- The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- name String
- The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- Map<String>
- A mapping of tags which should be assigned to the Azure Stack HCI Cluster.
- tenantId String
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
Outputs
All input properties are implicitly available as output properties. Additionally, the HciCluster resource produces the following output properties:
- CloudId string
- An immutable UUID for the Azure Stack HCI Cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- ResourceProvider stringObject Id 
- The object ID of the Resource Provider Service Principal.
- ServiceEndpoint string
- The region specific Data Path Endpoint of 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.
- ResourceProvider stringObject Id 
- The object ID of the Resource Provider Service Principal.
- ServiceEndpoint string
- The region specific Data Path Endpoint of 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.
- resourceProvider StringObject Id 
- The object ID of the Resource Provider Service Principal.
- serviceEndpoint String
- The region specific Data Path Endpoint of 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.
- resourceProvider stringObject Id 
- The object ID of the Resource Provider Service Principal.
- serviceEndpoint string
- The region specific Data Path Endpoint of 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.
- resource_provider_ strobject_ id 
- The object ID of the Resource Provider Service Principal.
- service_endpoint str
- The region specific Data Path Endpoint of 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.
- resourceProvider StringObject Id 
- The object ID of the Resource Provider Service Principal.
- serviceEndpoint String
- The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
Look up Existing HciCluster Resource
Get an existing HciCluster 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?: HciClusterState, opts?: CustomResourceOptions): HciCluster@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        automanage_configuration_id: Optional[str] = None,
        client_id: Optional[str] = None,
        cloud_id: Optional[str] = None,
        identity: Optional[HciClusterIdentityArgs] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        resource_provider_object_id: Optional[str] = None,
        service_endpoint: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tenant_id: Optional[str] = None) -> HciClusterfunc GetHciCluster(ctx *Context, name string, id IDInput, state *HciClusterState, opts ...ResourceOption) (*HciCluster, error)public static HciCluster Get(string name, Input<string> id, HciClusterState? state, CustomResourceOptions? opts = null)public static HciCluster get(String name, Output<String> id, HciClusterState state, CustomResourceOptions options)resources:  _:    type: azure:stack:HciCluster    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.
- AutomanageConfiguration stringId 
- The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- ClientId string
- The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- CloudId string
- An immutable UUID for the Azure Stack HCI Cluster.
- Identity
HciCluster Identity 
- An identityblock as defined below.
- Location string
- The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- Name string
- The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- ResourceGroup stringName 
- The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- ResourceProvider stringObject Id 
- The object ID of the Resource Provider Service Principal.
- ServiceEndpoint string
- The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Azure Stack HCI Cluster.
- TenantId string
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- AutomanageConfiguration stringId 
- The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- ClientId string
- The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- CloudId string
- An immutable UUID for the Azure Stack HCI Cluster.
- Identity
HciCluster Identity Args 
- An identityblock as defined below.
- Location string
- The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- Name string
- The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- ResourceGroup stringName 
- The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- ResourceProvider stringObject Id 
- The object ID of the Resource Provider Service Principal.
- ServiceEndpoint string
- The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
- map[string]string
- A mapping of tags which should be assigned to the Azure Stack HCI Cluster.
- TenantId string
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- automanageConfiguration StringId 
- The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- clientId String
- The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- cloudId String
- An immutable UUID for the Azure Stack HCI Cluster.
- identity
HciCluster Identity 
- An identityblock as defined below.
- location String
- The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- name String
- The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- resourceGroup StringName 
- The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- resourceProvider StringObject Id 
- The object ID of the Resource Provider Service Principal.
- serviceEndpoint String
- The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
- Map<String,String>
- A mapping of tags which should be assigned to the Azure Stack HCI Cluster.
- tenantId String
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- automanageConfiguration stringId 
- The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- clientId string
- The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- cloudId string
- An immutable UUID for the Azure Stack HCI Cluster.
- identity
HciCluster Identity 
- An identityblock as defined below.
- location string
- The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- name string
- The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- resourceGroup stringName 
- The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- resourceProvider stringObject Id 
- The object ID of the Resource Provider Service Principal.
- serviceEndpoint string
- The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Azure Stack HCI Cluster.
- tenantId string
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- automanage_configuration_ strid 
- The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- client_id str
- The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- cloud_id str
- An immutable UUID for the Azure Stack HCI Cluster.
- identity
HciCluster Identity Args 
- An identityblock as defined below.
- location str
- The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- name str
- The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- resource_group_ strname 
- The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- resource_provider_ strobject_ id 
- The object ID of the Resource Provider Service Principal.
- service_endpoint str
- The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Azure Stack HCI Cluster.
- tenant_id str
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- automanageConfiguration StringId 
- The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- clientId String
- The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- cloudId String
- An immutable UUID for the Azure Stack HCI Cluster.
- identity Property Map
- An identityblock as defined below.
- location String
- The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- name String
- The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created.
- resourceGroup StringName 
- The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created.
- resourceProvider StringObject Id 
- The object ID of the Resource Provider Service Principal.
- serviceEndpoint String
- The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
- Map<String>
- A mapping of tags which should be assigned to the Azure Stack HCI Cluster.
- tenantId String
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
Supporting Types
HciClusterIdentity, HciClusterIdentityArgs      
- Type string
- Specifies the type of Managed Service Identity that should be configured on the Azure Stack HCI Cluster. Possible value is SystemAssigned.
- PrincipalId string
- The Principal ID associated with this Managed Service Identity.
- TenantId string
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- Type string
- Specifies the type of Managed Service Identity that should be configured on the Azure Stack HCI Cluster. Possible value is SystemAssigned.
- PrincipalId string
- The Principal ID associated with this Managed Service Identity.
- TenantId string
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- type String
- Specifies the type of Managed Service Identity that should be configured on the Azure Stack HCI Cluster. Possible value is SystemAssigned.
- principalId String
- The Principal ID associated with this Managed Service Identity.
- tenantId String
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- type string
- Specifies the type of Managed Service Identity that should be configured on the Azure Stack HCI Cluster. Possible value is SystemAssigned.
- principalId string
- The Principal ID associated with this Managed Service Identity.
- tenantId string
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- type str
- Specifies the type of Managed Service Identity that should be configured on the Azure Stack HCI Cluster. Possible value is SystemAssigned.
- principal_id str
- The Principal ID associated with this Managed Service Identity.
- tenant_id str
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
- type String
- Specifies the type of Managed Service Identity that should be configured on the Azure Stack HCI Cluster. Possible value is SystemAssigned.
- principalId String
- The Principal ID associated with this Managed Service Identity.
- tenantId String
- The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. - NOTE If unspecified the Tenant ID of the Provider will be used. 
Import
Azure Stack HCI Clusters can be imported using the resource id, e.g.
$ pulumi import azure:stack/hciCluster:HciCluster example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.AzureStackHCI/clusters/cluster1
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 azurermTerraform Provider.