1. Packages
  2. Azure Classic
  3. API Docs
  4. redis
  5. EnterpriseCluster

We recommend using Azure Native.

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

azure.redis.EnterpriseCluster

Explore with Pulumi AI

Manages a Redis Enterprise Cluster.

Example Usage

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

const example = new azure.core.ResourceGroup("example", {
    name: "example-redisenterprise",
    location: "West Europe",
});
const exampleEnterpriseCluster = new azure.redis.EnterpriseCluster("example", {
    name: "example-redisenterprise",
    resourceGroupName: example.name,
    location: example.location,
    skuName: "EnterpriseFlash_F300-3",
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-redisenterprise",
    location="West Europe")
example_enterprise_cluster = azure.redis.EnterpriseCluster("example",
    name="example-redisenterprise",
    resource_group_name=example.name,
    location=example.location,
    sku_name="EnterpriseFlash_F300-3")
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-redisenterprise"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		_, err = redis.NewEnterpriseCluster(ctx, "example", &redis.EnterpriseClusterArgs{
			Name:              pulumi.String("example-redisenterprise"),
			ResourceGroupName: example.Name,
			Location:          example.Location,
			SkuName:           pulumi.String("EnterpriseFlash_F300-3"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-redisenterprise",
        Location = "West Europe",
    });

    var exampleEnterpriseCluster = new Azure.Redis.EnterpriseCluster("example", new()
    {
        Name = "example-redisenterprise",
        ResourceGroupName = example.Name,
        Location = example.Location,
        SkuName = "EnterpriseFlash_F300-3",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.redis.EnterpriseCluster;
import com.pulumi.azure.redis.EnterpriseClusterArgs;
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) {
        var example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-redisenterprise")
            .location("West Europe")
            .build());

        var exampleEnterpriseCluster = new EnterpriseCluster("exampleEnterpriseCluster", EnterpriseClusterArgs.builder()
            .name("example-redisenterprise")
            .resourceGroupName(example.name())
            .location(example.location())
            .skuName("EnterpriseFlash_F300-3")
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-redisenterprise
      location: West Europe
  exampleEnterpriseCluster:
    type: azure:redis:EnterpriseCluster
    name: example
    properties:
      name: example-redisenterprise
      resourceGroupName: ${example.name}
      location: ${example.location}
      skuName: EnterpriseFlash_F300-3
Copy

Create EnterpriseCluster Resource

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

Constructor syntax

new EnterpriseCluster(name: string, args: EnterpriseClusterArgs, opts?: CustomResourceOptions);
@overload
def EnterpriseCluster(resource_name: str,
                      args: EnterpriseClusterArgs,
                      opts: Optional[ResourceOptions] = None)

@overload
def EnterpriseCluster(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      resource_group_name: Optional[str] = None,
                      sku_name: Optional[str] = None,
                      location: Optional[str] = None,
                      minimum_tls_version: Optional[str] = None,
                      name: Optional[str] = None,
                      tags: Optional[Mapping[str, str]] = None,
                      zones: Optional[Sequence[str]] = None)
func NewEnterpriseCluster(ctx *Context, name string, args EnterpriseClusterArgs, opts ...ResourceOption) (*EnterpriseCluster, error)
public EnterpriseCluster(string name, EnterpriseClusterArgs args, CustomResourceOptions? opts = null)
public EnterpriseCluster(String name, EnterpriseClusterArgs args)
public EnterpriseCluster(String name, EnterpriseClusterArgs args, CustomResourceOptions options)
type: azure:redis:EnterpriseCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. EnterpriseClusterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. EnterpriseClusterArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. EnterpriseClusterArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. EnterpriseClusterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. EnterpriseClusterArgs
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 enterpriseClusterResource = new Azure.Redis.EnterpriseCluster("enterpriseClusterResource", new()
{
    ResourceGroupName = "string",
    SkuName = "string",
    Location = "string",
    MinimumTlsVersion = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
    Zones = new[]
    {
        "string",
    },
});
Copy
example, err := redis.NewEnterpriseCluster(ctx, "enterpriseClusterResource", &redis.EnterpriseClusterArgs{
	ResourceGroupName: pulumi.String("string"),
	SkuName:           pulumi.String("string"),
	Location:          pulumi.String("string"),
	MinimumTlsVersion: pulumi.String("string"),
	Name:              pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Zones: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var enterpriseClusterResource = new EnterpriseCluster("enterpriseClusterResource", EnterpriseClusterArgs.builder()
    .resourceGroupName("string")
    .skuName("string")
    .location("string")
    .minimumTlsVersion("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .zones("string")
    .build());
Copy
enterprise_cluster_resource = azure.redis.EnterpriseCluster("enterpriseClusterResource",
    resource_group_name="string",
    sku_name="string",
    location="string",
    minimum_tls_version="string",
    name="string",
    tags={
        "string": "string",
    },
    zones=["string"])
Copy
const enterpriseClusterResource = new azure.redis.EnterpriseCluster("enterpriseClusterResource", {
    resourceGroupName: "string",
    skuName: "string",
    location: "string",
    minimumTlsVersion: "string",
    name: "string",
    tags: {
        string: "string",
    },
    zones: ["string"],
});
Copy
type: azure:redis:EnterpriseCluster
properties:
    location: string
    minimumTlsVersion: string
    name: string
    resourceGroupName: string
    skuName: string
    tags:
        string: string
    zones:
        - string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
SkuName
This property is required.
Changes to this property will trigger replacement.
string
The sku_name is comprised of two segments separated by a hyphen (e.g. Enterprise_E10-2). The first segment of the sku_name defines the name of the SKU, possible values are Enterprise_E5, Enterprise_E10, Enterprise_E20, Enterprise_E50, Enterprise_E100, Enterprise_E200, Enterprise_E400, EnterpriseFlash_F300, EnterpriseFlash_F700 or EnterpriseFlash_F1500. The second segment defines the capacity of the sku_name, possible values for Enteprise SKUs are (2, 4, 6, ...). Possible values for EnterpriseFlash SKUs are (3, 9, 15, ...). Changing this forces a new Redis Enterprise Cluster to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
MinimumTlsVersion Changes to this property will trigger replacement. string

The minimum TLS version. Possible values are 1.0, 1.1 and 1.2. Defaults to 1.2. Changing this forces a new Redis Enterprise Cluster to be created.

NOTE: Azure Services will require TLS 1.2+ by August 2025, please see this announcement for more.

Name Changes to this property will trigger replacement. string
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
Zones Changes to this property will trigger replacement. List<string>
Specifies a list of Availability Zones in which this Redis Enterprise Cluster should be located. Changing this forces a new Redis Enterprise Cluster to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
SkuName
This property is required.
Changes to this property will trigger replacement.
string
The sku_name is comprised of two segments separated by a hyphen (e.g. Enterprise_E10-2). The first segment of the sku_name defines the name of the SKU, possible values are Enterprise_E5, Enterprise_E10, Enterprise_E20, Enterprise_E50, Enterprise_E100, Enterprise_E200, Enterprise_E400, EnterpriseFlash_F300, EnterpriseFlash_F700 or EnterpriseFlash_F1500. The second segment defines the capacity of the sku_name, possible values for Enteprise SKUs are (2, 4, 6, ...). Possible values for EnterpriseFlash SKUs are (3, 9, 15, ...). Changing this forces a new Redis Enterprise Cluster to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
MinimumTlsVersion Changes to this property will trigger replacement. string

The minimum TLS version. Possible values are 1.0, 1.1 and 1.2. Defaults to 1.2. Changing this forces a new Redis Enterprise Cluster to be created.

NOTE: Azure Services will require TLS 1.2+ by August 2025, please see this announcement for more.

Name Changes to this property will trigger replacement. string
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
Tags map[string]string
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
Zones Changes to this property will trigger replacement. []string
Specifies a list of Availability Zones in which this Redis Enterprise Cluster should be located. Changing this forces a new Redis Enterprise Cluster to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
skuName
This property is required.
Changes to this property will trigger replacement.
String
The sku_name is comprised of two segments separated by a hyphen (e.g. Enterprise_E10-2). The first segment of the sku_name defines the name of the SKU, possible values are Enterprise_E5, Enterprise_E10, Enterprise_E20, Enterprise_E50, Enterprise_E100, Enterprise_E200, Enterprise_E400, EnterpriseFlash_F300, EnterpriseFlash_F700 or EnterpriseFlash_F1500. The second segment defines the capacity of the sku_name, possible values for Enteprise SKUs are (2, 4, 6, ...). Possible values for EnterpriseFlash SKUs are (3, 9, 15, ...). Changing this forces a new Redis Enterprise Cluster to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
minimumTlsVersion Changes to this property will trigger replacement. String

The minimum TLS version. Possible values are 1.0, 1.1 and 1.2. Defaults to 1.2. Changing this forces a new Redis Enterprise Cluster to be created.

NOTE: Azure Services will require TLS 1.2+ by August 2025, please see this announcement for more.

name Changes to this property will trigger replacement. String
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
tags Map<String,String>
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
zones Changes to this property will trigger replacement. List<String>
Specifies a list of Availability Zones in which this Redis Enterprise Cluster should be located. Changing this forces a new Redis Enterprise Cluster to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
skuName
This property is required.
Changes to this property will trigger replacement.
string
The sku_name is comprised of two segments separated by a hyphen (e.g. Enterprise_E10-2). The first segment of the sku_name defines the name of the SKU, possible values are Enterprise_E5, Enterprise_E10, Enterprise_E20, Enterprise_E50, Enterprise_E100, Enterprise_E200, Enterprise_E400, EnterpriseFlash_F300, EnterpriseFlash_F700 or EnterpriseFlash_F1500. The second segment defines the capacity of the sku_name, possible values for Enteprise SKUs are (2, 4, 6, ...). Possible values for EnterpriseFlash SKUs are (3, 9, 15, ...). Changing this forces a new Redis Enterprise Cluster to be created.
location Changes to this property will trigger replacement. string
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
minimumTlsVersion Changes to this property will trigger replacement. string

The minimum TLS version. Possible values are 1.0, 1.1 and 1.2. Defaults to 1.2. Changing this forces a new Redis Enterprise Cluster to be created.

NOTE: Azure Services will require TLS 1.2+ by August 2025, please see this announcement for more.

name Changes to this property will trigger replacement. string
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
tags {[key: string]: string}
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
zones Changes to this property will trigger replacement. string[]
Specifies a list of Availability Zones in which this Redis Enterprise Cluster should be located. Changing this forces a new Redis Enterprise Cluster to be created.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Resource Group where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
sku_name
This property is required.
Changes to this property will trigger replacement.
str
The sku_name is comprised of two segments separated by a hyphen (e.g. Enterprise_E10-2). The first segment of the sku_name defines the name of the SKU, possible values are Enterprise_E5, Enterprise_E10, Enterprise_E20, Enterprise_E50, Enterprise_E100, Enterprise_E200, Enterprise_E400, EnterpriseFlash_F300, EnterpriseFlash_F700 or EnterpriseFlash_F1500. The second segment defines the capacity of the sku_name, possible values for Enteprise SKUs are (2, 4, 6, ...). Possible values for EnterpriseFlash SKUs are (3, 9, 15, ...). Changing this forces a new Redis Enterprise Cluster to be created.
location Changes to this property will trigger replacement. str
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
minimum_tls_version Changes to this property will trigger replacement. str

The minimum TLS version. Possible values are 1.0, 1.1 and 1.2. Defaults to 1.2. Changing this forces a new Redis Enterprise Cluster to be created.

NOTE: Azure Services will require TLS 1.2+ by August 2025, please see this announcement for more.

name Changes to this property will trigger replacement. str
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
tags Mapping[str, str]
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
zones Changes to this property will trigger replacement. Sequence[str]
Specifies a list of Availability Zones in which this Redis Enterprise Cluster should be located. Changing this forces a new Redis Enterprise Cluster to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
skuName
This property is required.
Changes to this property will trigger replacement.
String
The sku_name is comprised of two segments separated by a hyphen (e.g. Enterprise_E10-2). The first segment of the sku_name defines the name of the SKU, possible values are Enterprise_E5, Enterprise_E10, Enterprise_E20, Enterprise_E50, Enterprise_E100, Enterprise_E200, Enterprise_E400, EnterpriseFlash_F300, EnterpriseFlash_F700 or EnterpriseFlash_F1500. The second segment defines the capacity of the sku_name, possible values for Enteprise SKUs are (2, 4, 6, ...). Possible values for EnterpriseFlash SKUs are (3, 9, 15, ...). Changing this forces a new Redis Enterprise Cluster to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
minimumTlsVersion Changes to this property will trigger replacement. String

The minimum TLS version. Possible values are 1.0, 1.1 and 1.2. Defaults to 1.2. Changing this forces a new Redis Enterprise Cluster to be created.

NOTE: Azure Services will require TLS 1.2+ by August 2025, please see this announcement for more.

name Changes to this property will trigger replacement. String
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
tags Map<String>
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
zones Changes to this property will trigger replacement. List<String>
Specifies a list of Availability Zones in which this Redis Enterprise Cluster should be located. Changing this forces a new Redis Enterprise Cluster to be created.

Outputs

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

Hostname string
DNS name of the cluster endpoint.
Id string
The provider-assigned unique ID for this managed resource.
Hostname string
DNS name of the cluster endpoint.
Id string
The provider-assigned unique ID for this managed resource.
hostname String
DNS name of the cluster endpoint.
id String
The provider-assigned unique ID for this managed resource.
hostname string
DNS name of the cluster endpoint.
id string
The provider-assigned unique ID for this managed resource.
hostname str
DNS name of the cluster endpoint.
id str
The provider-assigned unique ID for this managed resource.
hostname String
DNS name of the cluster endpoint.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing EnterpriseCluster Resource

Get an existing EnterpriseCluster 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?: EnterpriseClusterState, opts?: CustomResourceOptions): EnterpriseCluster
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        hostname: Optional[str] = None,
        location: Optional[str] = None,
        minimum_tls_version: Optional[str] = None,
        name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        sku_name: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        zones: Optional[Sequence[str]] = None) -> EnterpriseCluster
func GetEnterpriseCluster(ctx *Context, name string, id IDInput, state *EnterpriseClusterState, opts ...ResourceOption) (*EnterpriseCluster, error)
public static EnterpriseCluster Get(string name, Input<string> id, EnterpriseClusterState? state, CustomResourceOptions? opts = null)
public static EnterpriseCluster get(String name, Output<String> id, EnterpriseClusterState state, CustomResourceOptions options)
resources:  _:    type: azure:redis:EnterpriseCluster    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Hostname string
DNS name of the cluster endpoint.
Location Changes to this property will trigger replacement. string
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
MinimumTlsVersion Changes to this property will trigger replacement. string

The minimum TLS version. Possible values are 1.0, 1.1 and 1.2. Defaults to 1.2. Changing this forces a new Redis Enterprise Cluster to be created.

NOTE: Azure Services will require TLS 1.2+ by August 2025, please see this announcement for more.

Name Changes to this property will trigger replacement. string
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
SkuName Changes to this property will trigger replacement. string
The sku_name is comprised of two segments separated by a hyphen (e.g. Enterprise_E10-2). The first segment of the sku_name defines the name of the SKU, possible values are Enterprise_E5, Enterprise_E10, Enterprise_E20, Enterprise_E50, Enterprise_E100, Enterprise_E200, Enterprise_E400, EnterpriseFlash_F300, EnterpriseFlash_F700 or EnterpriseFlash_F1500. The second segment defines the capacity of the sku_name, possible values for Enteprise SKUs are (2, 4, 6, ...). Possible values for EnterpriseFlash SKUs are (3, 9, 15, ...). Changing this forces a new Redis Enterprise Cluster to be created.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
Zones Changes to this property will trigger replacement. List<string>
Specifies a list of Availability Zones in which this Redis Enterprise Cluster should be located. Changing this forces a new Redis Enterprise Cluster to be created.
Hostname string
DNS name of the cluster endpoint.
Location Changes to this property will trigger replacement. string
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
MinimumTlsVersion Changes to this property will trigger replacement. string

The minimum TLS version. Possible values are 1.0, 1.1 and 1.2. Defaults to 1.2. Changing this forces a new Redis Enterprise Cluster to be created.

NOTE: Azure Services will require TLS 1.2+ by August 2025, please see this announcement for more.

Name Changes to this property will trigger replacement. string
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
SkuName Changes to this property will trigger replacement. string
The sku_name is comprised of two segments separated by a hyphen (e.g. Enterprise_E10-2). The first segment of the sku_name defines the name of the SKU, possible values are Enterprise_E5, Enterprise_E10, Enterprise_E20, Enterprise_E50, Enterprise_E100, Enterprise_E200, Enterprise_E400, EnterpriseFlash_F300, EnterpriseFlash_F700 or EnterpriseFlash_F1500. The second segment defines the capacity of the sku_name, possible values for Enteprise SKUs are (2, 4, 6, ...). Possible values for EnterpriseFlash SKUs are (3, 9, 15, ...). Changing this forces a new Redis Enterprise Cluster to be created.
Tags map[string]string
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
Zones Changes to this property will trigger replacement. []string
Specifies a list of Availability Zones in which this Redis Enterprise Cluster should be located. Changing this forces a new Redis Enterprise Cluster to be created.
hostname String
DNS name of the cluster endpoint.
location Changes to this property will trigger replacement. String
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
minimumTlsVersion Changes to this property will trigger replacement. String

The minimum TLS version. Possible values are 1.0, 1.1 and 1.2. Defaults to 1.2. Changing this forces a new Redis Enterprise Cluster to be created.

NOTE: Azure Services will require TLS 1.2+ by August 2025, please see this announcement for more.

name Changes to this property will trigger replacement. String
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
skuName Changes to this property will trigger replacement. String
The sku_name is comprised of two segments separated by a hyphen (e.g. Enterprise_E10-2). The first segment of the sku_name defines the name of the SKU, possible values are Enterprise_E5, Enterprise_E10, Enterprise_E20, Enterprise_E50, Enterprise_E100, Enterprise_E200, Enterprise_E400, EnterpriseFlash_F300, EnterpriseFlash_F700 or EnterpriseFlash_F1500. The second segment defines the capacity of the sku_name, possible values for Enteprise SKUs are (2, 4, 6, ...). Possible values for EnterpriseFlash SKUs are (3, 9, 15, ...). Changing this forces a new Redis Enterprise Cluster to be created.
tags Map<String,String>
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
zones Changes to this property will trigger replacement. List<String>
Specifies a list of Availability Zones in which this Redis Enterprise Cluster should be located. Changing this forces a new Redis Enterprise Cluster to be created.
hostname string
DNS name of the cluster endpoint.
location Changes to this property will trigger replacement. string
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
minimumTlsVersion Changes to this property will trigger replacement. string

The minimum TLS version. Possible values are 1.0, 1.1 and 1.2. Defaults to 1.2. Changing this forces a new Redis Enterprise Cluster to be created.

NOTE: Azure Services will require TLS 1.2+ by August 2025, please see this announcement for more.

name Changes to this property will trigger replacement. string
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
resourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
skuName Changes to this property will trigger replacement. string
The sku_name is comprised of two segments separated by a hyphen (e.g. Enterprise_E10-2). The first segment of the sku_name defines the name of the SKU, possible values are Enterprise_E5, Enterprise_E10, Enterprise_E20, Enterprise_E50, Enterprise_E100, Enterprise_E200, Enterprise_E400, EnterpriseFlash_F300, EnterpriseFlash_F700 or EnterpriseFlash_F1500. The second segment defines the capacity of the sku_name, possible values for Enteprise SKUs are (2, 4, 6, ...). Possible values for EnterpriseFlash SKUs are (3, 9, 15, ...). Changing this forces a new Redis Enterprise Cluster to be created.
tags {[key: string]: string}
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
zones Changes to this property will trigger replacement. string[]
Specifies a list of Availability Zones in which this Redis Enterprise Cluster should be located. Changing this forces a new Redis Enterprise Cluster to be created.
hostname str
DNS name of the cluster endpoint.
location Changes to this property will trigger replacement. str
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
minimum_tls_version Changes to this property will trigger replacement. str

The minimum TLS version. Possible values are 1.0, 1.1 and 1.2. Defaults to 1.2. Changing this forces a new Redis Enterprise Cluster to be created.

NOTE: Azure Services will require TLS 1.2+ by August 2025, please see this announcement for more.

name Changes to this property will trigger replacement. str
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
resource_group_name Changes to this property will trigger replacement. str
The name of the Resource Group where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
sku_name Changes to this property will trigger replacement. str
The sku_name is comprised of two segments separated by a hyphen (e.g. Enterprise_E10-2). The first segment of the sku_name defines the name of the SKU, possible values are Enterprise_E5, Enterprise_E10, Enterprise_E20, Enterprise_E50, Enterprise_E100, Enterprise_E200, Enterprise_E400, EnterpriseFlash_F300, EnterpriseFlash_F700 or EnterpriseFlash_F1500. The second segment defines the capacity of the sku_name, possible values for Enteprise SKUs are (2, 4, 6, ...). Possible values for EnterpriseFlash SKUs are (3, 9, 15, ...). Changing this forces a new Redis Enterprise Cluster to be created.
tags Mapping[str, str]
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
zones Changes to this property will trigger replacement. Sequence[str]
Specifies a list of Availability Zones in which this Redis Enterprise Cluster should be located. Changing this forces a new Redis Enterprise Cluster to be created.
hostname String
DNS name of the cluster endpoint.
location Changes to this property will trigger replacement. String
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
minimumTlsVersion Changes to this property will trigger replacement. String

The minimum TLS version. Possible values are 1.0, 1.1 and 1.2. Defaults to 1.2. Changing this forces a new Redis Enterprise Cluster to be created.

NOTE: Azure Services will require TLS 1.2+ by August 2025, please see this announcement for more.

name Changes to this property will trigger replacement. String
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
skuName Changes to this property will trigger replacement. String
The sku_name is comprised of two segments separated by a hyphen (e.g. Enterprise_E10-2). The first segment of the sku_name defines the name of the SKU, possible values are Enterprise_E5, Enterprise_E10, Enterprise_E20, Enterprise_E50, Enterprise_E100, Enterprise_E200, Enterprise_E400, EnterpriseFlash_F300, EnterpriseFlash_F700 or EnterpriseFlash_F1500. The second segment defines the capacity of the sku_name, possible values for Enteprise SKUs are (2, 4, 6, ...). Possible values for EnterpriseFlash SKUs are (3, 9, 15, ...). Changing this forces a new Redis Enterprise Cluster to be created.
tags Map<String>
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
zones Changes to this property will trigger replacement. List<String>
Specifies a list of Availability Zones in which this Redis Enterprise Cluster should be located. Changing this forces a new Redis Enterprise Cluster to be created.

Import

Redis Enterprise Clusters can be imported using the resource id, e.g.

$ pulumi import azure:redis/enterpriseCluster:EnterpriseCluster example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Cache/redisEnterprise/cluster1
Copy

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.