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=azure.stack.HciClusterIdentityArgs(
type="SystemAssigned",
))
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/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, nil, 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=azure.stack.HciClusterIdentityArgs(
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
The HciCluster resource accepts the following input properties:
- Resource
Group stringName - 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 stringId - The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- Client
Id 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
Hci
Cluster Identity - An
identity
block 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.
- Tenant
Id 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 stringName - 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 stringId - The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- Client
Id 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
Hci
Cluster Identity Args - An
identity
block 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.
- Tenant
Id 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 StringName - 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 StringId - The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- client
Id 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
Hci
Cluster Identity - An
identity
block 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.
- tenant
Id 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 stringName - 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 stringId - The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- client
Id 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
Hci
Cluster Identity - An
identity
block 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.
- tenant
Id 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
Hci
Cluster Identity Args - An
identity
block 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.
- resource
Group StringName - 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 StringId - The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- client
Id 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
identity
block 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.
- tenant
Id 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:
- Cloud
Id string - An immutable UUID for the Azure Stack HCI Cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Provider stringObject Id - The object ID of the Resource Provider Service Principal.
- Service
Endpoint string - The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
- Cloud
Id string - An immutable UUID for the Azure Stack HCI Cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Provider stringObject Id - The object ID of the Resource Provider Service Principal.
- Service
Endpoint string - The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
- cloud
Id String - An immutable UUID for the Azure Stack HCI Cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Provider StringObject Id - The object ID of the Resource Provider Service Principal.
- service
Endpoint String - The region specific Data Path Endpoint of the Azure Stack HCI Cluster.
- cloud
Id string - An immutable UUID for the Azure Stack HCI Cluster.
- id string
- The provider-assigned unique ID for this managed resource.
- resource
Provider stringObject Id - The object ID of the Resource Provider Service Principal.
- service
Endpoint 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.
- cloud
Id String - An immutable UUID for the Azure Stack HCI Cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Provider StringObject Id - The object ID of the Resource Provider Service Principal.
- service
Endpoint 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) -> HciCluster
func 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)
Resource lookup is not supported in YAML
- 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.
- Automanage
Configuration stringId - The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- Client
Id 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.
- Cloud
Id string - An immutable UUID for the Azure Stack HCI Cluster.
- Identity
Hci
Cluster Identity - An
identity
block 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.
- Resource
Group stringName - 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 stringObject Id - The object ID of the Resource Provider Service Principal.
- Service
Endpoint 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.
- Tenant
Id 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 stringId - The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- Client
Id 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.
- Cloud
Id string - An immutable UUID for the Azure Stack HCI Cluster.
- Identity
Hci
Cluster Identity Args - An
identity
block 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.
- Resource
Group stringName - 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 stringObject Id - The object ID of the Resource Provider Service Principal.
- Service
Endpoint 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.
- Tenant
Id 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 StringId - The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- client
Id 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.
- cloud
Id String - An immutable UUID for the Azure Stack HCI Cluster.
- identity
Hci
Cluster Identity - An
identity
block 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.
- resource
Group StringName - 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 StringObject Id - The object ID of the Resource Provider Service Principal.
- service
Endpoint 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.
- tenant
Id 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 stringId - The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- client
Id 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.
- cloud
Id string - An immutable UUID for the Azure Stack HCI Cluster.
- identity
Hci
Cluster Identity - An
identity
block 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.
- resource
Group stringName - 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 stringObject Id - The object ID of the Resource Provider Service Principal.
- service
Endpoint 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.
- tenant
Id 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
Hci
Cluster Identity Args - An
identity
block 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.
- automanage
Configuration StringId - The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster.
- client
Id 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.
- cloud
Id String - An immutable UUID for the Azure Stack HCI Cluster.
- identity Property Map
- An
identity
block 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.
- resource
Group StringName - 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 StringObject Id - The object ID of the Resource Provider Service Principal.
- service
Endpoint 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.
- tenant
Id 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
. - Principal
Id string - The Principal ID associated with this Managed Service Identity.
- Tenant
Id 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
. - Principal
Id string - The Principal ID associated with this Managed Service Identity.
- Tenant
Id 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
. - principal
Id String - The Principal ID associated with this Managed Service Identity.
- tenant
Id 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
. - principal
Id string - The Principal ID associated with this Managed Service Identity.
- tenant
Id 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
. - principal
Id String - The Principal ID associated with this Managed Service Identity.
- tenant
Id 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
azurerm
Terraform Provider.