We recommend using Azure Native.
azure.redis.EnterpriseCluster
Explore with Pulumi AI
Manages a Redis Enterprise Cluster.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
{
Location = "West Europe",
});
var exampleEnterpriseCluster = new Azure.Redis.EnterpriseCluster("exampleEnterpriseCluster", new()
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
SkuName = "EnterpriseFlash_F300-3",
});
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/redis"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = redis.NewEnterpriseCluster(ctx, "exampleEnterpriseCluster", &redis.EnterpriseClusterArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
SkuName: pulumi.String("EnterpriseFlash_F300-3"),
})
if err != nil {
return err
}
return nil
})
}
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleEnterpriseCluster = new EnterpriseCluster("exampleEnterpriseCluster", EnterpriseClusterArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.skuName("EnterpriseFlash_F300-3")
.build());
}
}
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_enterprise_cluster = azure.redis.EnterpriseCluster("exampleEnterpriseCluster",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
sku_name="EnterpriseFlash_F300-3")
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleEnterpriseCluster = new azure.redis.EnterpriseCluster("exampleEnterpriseCluster", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
skuName: "EnterpriseFlash_F300-3",
});
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
properties:
location: West Europe
exampleEnterpriseCluster:
type: azure:redis:EnterpriseCluster
properties:
resourceGroupName: ${exampleResourceGroup.name}
location: ${exampleResourceGroup.location}
skuName: EnterpriseFlash_F300-3
Create EnterpriseCluster Resource
new EnterpriseCluster(name: string, args: EnterpriseClusterArgs, opts?: CustomResourceOptions);
@overload
def EnterpriseCluster(resource_name: str,
opts: Optional[ResourceOptions] = 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)
@overload
def EnterpriseCluster(resource_name: str,
args: EnterpriseClusterArgs,
opts: Optional[ResourceOptions] = 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.
- name string
- The unique name of the resource.
- args EnterpriseClusterArgs
- 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 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 string
- The unique name of the resource.
- args EnterpriseClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EnterpriseClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EnterpriseClusterArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
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
The EnterpriseCluster resource accepts the following input properties:
- Resource
Group stringName 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 string The
sku_name
is comprised of two segments separated by a hyphen (e.g.Enterprise_E10-2
). The first segment of thesku_name
defines thename
of the SKU, possible values areEnterprise_E10
,Enterprise_E20"
,Enterprise_E50
,Enterprise_E100
,EnterpriseFlash_F300
,EnterpriseFlash_F700
orEnterpriseFlash_F1500
. The second segment defines thecapacity
of thesku_name
, possible values forEnteprise
SKUs are (2
,4
,6
, ...). Possible values forEnterpriseFlash
SKUs are (3
,9
,15
, ...). Changing this forces a new Redis Enterprise Cluster to be created.- Location string
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
- Minimum
Tls stringVersion The minimum TLS version. Possible values are
1.0
,1.1
and1.2
. Defaults to1.2
. Changing this forces a new Redis Enterprise Cluster to be created.- Name string
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
- Dictionary<string, string>
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
- Zones 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.
- Resource
Group stringName 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 string The
sku_name
is comprised of two segments separated by a hyphen (e.g.Enterprise_E10-2
). The first segment of thesku_name
defines thename
of the SKU, possible values areEnterprise_E10
,Enterprise_E20"
,Enterprise_E50
,Enterprise_E100
,EnterpriseFlash_F300
,EnterpriseFlash_F700
orEnterpriseFlash_F1500
. The second segment defines thecapacity
of thesku_name
, possible values forEnteprise
SKUs are (2
,4
,6
, ...). Possible values forEnterpriseFlash
SKUs are (3
,9
,15
, ...). Changing this forces a new Redis Enterprise Cluster to be created.- Location string
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
- Minimum
Tls stringVersion The minimum TLS version. Possible values are
1.0
,1.1
and1.2
. Defaults to1.2
. Changing this forces a new Redis Enterprise Cluster to be created.- Name string
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
- map[string]string
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
- Zones []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 StringName 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 String The
sku_name
is comprised of two segments separated by a hyphen (e.g.Enterprise_E10-2
). The first segment of thesku_name
defines thename
of the SKU, possible values areEnterprise_E10
,Enterprise_E20"
,Enterprise_E50
,Enterprise_E100
,EnterpriseFlash_F300
,EnterpriseFlash_F700
orEnterpriseFlash_F1500
. The second segment defines thecapacity
of thesku_name
, possible values forEnteprise
SKUs are (2
,4
,6
, ...). Possible values forEnterpriseFlash
SKUs are (3
,9
,15
, ...). Changing this forces a new Redis Enterprise Cluster to be created.- location String
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
- minimum
Tls StringVersion The minimum TLS version. Possible values are
1.0
,1.1
and1.2
. Defaults to1.2
. Changing this forces a new Redis Enterprise Cluster to be created.- name String
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
- Map<String,String>
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
- zones 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.
- resource
Group stringName 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 string The
sku_name
is comprised of two segments separated by a hyphen (e.g.Enterprise_E10-2
). The first segment of thesku_name
defines thename
of the SKU, possible values areEnterprise_E10
,Enterprise_E20"
,Enterprise_E50
,Enterprise_E100
,EnterpriseFlash_F300
,EnterpriseFlash_F700
orEnterpriseFlash_F1500
. The second segment defines thecapacity
of thesku_name
, possible values forEnteprise
SKUs are (2
,4
,6
, ...). Possible values forEnterpriseFlash
SKUs are (3
,9
,15
, ...). Changing this forces a new Redis Enterprise Cluster to be created.- location string
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
- minimum
Tls stringVersion The minimum TLS version. Possible values are
1.0
,1.1
and1.2
. Defaults to1.2
. Changing this forces a new Redis Enterprise Cluster to be created.- name string
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
- {[key: string]: string}
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
- zones 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_ strname 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 str The
sku_name
is comprised of two segments separated by a hyphen (e.g.Enterprise_E10-2
). The first segment of thesku_name
defines thename
of the SKU, possible values areEnterprise_E10
,Enterprise_E20"
,Enterprise_E50
,Enterprise_E100
,EnterpriseFlash_F300
,EnterpriseFlash_F700
orEnterpriseFlash_F1500
. The second segment defines thecapacity
of thesku_name
, possible values forEnteprise
SKUs are (2
,4
,6
, ...). Possible values forEnterpriseFlash
SKUs are (3
,9
,15
, ...). Changing this forces a new Redis Enterprise Cluster to be created.- location str
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
- minimum_
tls_ strversion The minimum TLS version. Possible values are
1.0
,1.1
and1.2
. Defaults to1.2
. Changing this forces a new Redis Enterprise Cluster to be created.- name str
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
- Mapping[str, str]
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
- zones 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.
- resource
Group StringName 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 String The
sku_name
is comprised of two segments separated by a hyphen (e.g.Enterprise_E10-2
). The first segment of thesku_name
defines thename
of the SKU, possible values areEnterprise_E10
,Enterprise_E20"
,Enterprise_E50
,Enterprise_E100
,EnterpriseFlash_F300
,EnterpriseFlash_F700
orEnterpriseFlash_F1500
. The second segment defines thecapacity
of thesku_name
, possible values forEnteprise
SKUs are (2
,4
,6
, ...). Possible values forEnterpriseFlash
SKUs are (3
,9
,15
, ...). Changing this forces a new Redis Enterprise Cluster to be created.- location String
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
- minimum
Tls StringVersion The minimum TLS version. Possible values are
1.0
,1.1
and1.2
. Defaults to1.2
. Changing this forces a new Redis Enterprise Cluster to be created.- name String
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
- Map<String>
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
- zones 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:
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)
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.
- Hostname string
DNS name of the cluster endpoint.
- Location string
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
- Minimum
Tls stringVersion The minimum TLS version. Possible values are
1.0
,1.1
and1.2
. Defaults to1.2
. Changing this forces a new Redis Enterprise Cluster to be created.- Name string
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
- Resource
Group stringName 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 string The
sku_name
is comprised of two segments separated by a hyphen (e.g.Enterprise_E10-2
). The first segment of thesku_name
defines thename
of the SKU, possible values areEnterprise_E10
,Enterprise_E20"
,Enterprise_E50
,Enterprise_E100
,EnterpriseFlash_F300
,EnterpriseFlash_F700
orEnterpriseFlash_F1500
. The second segment defines thecapacity
of thesku_name
, possible values forEnteprise
SKUs are (2
,4
,6
, ...). Possible values forEnterpriseFlash
SKUs are (3
,9
,15
, ...). Changing this forces a new Redis Enterprise Cluster to be created.- Dictionary<string, string>
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
- Zones 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 string
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
- Minimum
Tls stringVersion The minimum TLS version. Possible values are
1.0
,1.1
and1.2
. Defaults to1.2
. Changing this forces a new Redis Enterprise Cluster to be created.- Name string
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
- Resource
Group stringName 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 string The
sku_name
is comprised of two segments separated by a hyphen (e.g.Enterprise_E10-2
). The first segment of thesku_name
defines thename
of the SKU, possible values areEnterprise_E10
,Enterprise_E20"
,Enterprise_E50
,Enterprise_E100
,EnterpriseFlash_F300
,EnterpriseFlash_F700
orEnterpriseFlash_F1500
. The second segment defines thecapacity
of thesku_name
, possible values forEnteprise
SKUs are (2
,4
,6
, ...). Possible values forEnterpriseFlash
SKUs are (3
,9
,15
, ...). Changing this forces a new Redis Enterprise Cluster to be created.- map[string]string
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
- Zones []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 String
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
- minimum
Tls StringVersion The minimum TLS version. Possible values are
1.0
,1.1
and1.2
. Defaults to1.2
. Changing this forces a new Redis Enterprise Cluster to be created.- name String
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
- resource
Group StringName 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 String The
sku_name
is comprised of two segments separated by a hyphen (e.g.Enterprise_E10-2
). The first segment of thesku_name
defines thename
of the SKU, possible values areEnterprise_E10
,Enterprise_E20"
,Enterprise_E50
,Enterprise_E100
,EnterpriseFlash_F300
,EnterpriseFlash_F700
orEnterpriseFlash_F1500
. The second segment defines thecapacity
of thesku_name
, possible values forEnteprise
SKUs are (2
,4
,6
, ...). Possible values forEnterpriseFlash
SKUs are (3
,9
,15
, ...). Changing this forces a new Redis Enterprise Cluster to be created.- Map<String,String>
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
- zones 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 string
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
- minimum
Tls stringVersion The minimum TLS version. Possible values are
1.0
,1.1
and1.2
. Defaults to1.2
. Changing this forces a new Redis Enterprise Cluster to be created.- name string
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
- resource
Group stringName 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 string The
sku_name
is comprised of two segments separated by a hyphen (e.g.Enterprise_E10-2
). The first segment of thesku_name
defines thename
of the SKU, possible values areEnterprise_E10
,Enterprise_E20"
,Enterprise_E50
,Enterprise_E100
,EnterpriseFlash_F300
,EnterpriseFlash_F700
orEnterpriseFlash_F1500
. The second segment defines thecapacity
of thesku_name
, possible values forEnteprise
SKUs are (2
,4
,6
, ...). Possible values forEnterpriseFlash
SKUs are (3
,9
,15
, ...). Changing this forces a new Redis Enterprise Cluster to be created.- {[key: string]: string}
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
- zones 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 str
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
- minimum_
tls_ strversion The minimum TLS version. Possible values are
1.0
,1.1
and1.2
. Defaults to1.2
. Changing this forces a new Redis Enterprise Cluster to be created.- name 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_ strname 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 str The
sku_name
is comprised of two segments separated by a hyphen (e.g.Enterprise_E10-2
). The first segment of thesku_name
defines thename
of the SKU, possible values areEnterprise_E10
,Enterprise_E20"
,Enterprise_E50
,Enterprise_E100
,EnterpriseFlash_F300
,EnterpriseFlash_F700
orEnterpriseFlash_F1500
. The second segment defines thecapacity
of thesku_name
, possible values forEnteprise
SKUs are (2
,4
,6
, ...). Possible values forEnterpriseFlash
SKUs are (3
,9
,15
, ...). Changing this forces a new Redis Enterprise Cluster to be created.- Mapping[str, str]
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
- zones 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 String
The Azure Region where the Redis Enterprise Cluster should exist. Changing this forces a new Redis Enterprise Cluster to be created.
- minimum
Tls StringVersion The minimum TLS version. Possible values are
1.0
,1.1
and1.2
. Defaults to1.2
. Changing this forces a new Redis Enterprise Cluster to be created.- name String
The name which should be used for this Redis Enterprise Cluster. Changing this forces a new Redis Enterprise Cluster to be created.
- resource
Group StringName 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 String The
sku_name
is comprised of two segments separated by a hyphen (e.g.Enterprise_E10-2
). The first segment of thesku_name
defines thename
of the SKU, possible values areEnterprise_E10
,Enterprise_E20"
,Enterprise_E50
,Enterprise_E100
,EnterpriseFlash_F300
,EnterpriseFlash_F700
orEnterpriseFlash_F1500
. The second segment defines thecapacity
of thesku_name
, possible values forEnteprise
SKUs are (2
,4
,6
, ...). Possible values forEnterpriseFlash
SKUs are (3
,9
,15
, ...). Changing this forces a new Redis Enterprise Cluster to be created.- Map<String>
A mapping of tags which should be assigned to the Redis Enterprise Cluster.
- zones 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
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.