1. Packages
  2. stackit
  3. API Docs
  4. RedisInstance
Viewing docs for stackit v0.0.4
published on Friday, Feb 20, 2026 by stackitcloud
stackit logo
Viewing docs for stackit v0.0.4
published on Friday, Feb 20, 2026 by stackitcloud

    Redis instance resource schema. Must have a region specified in the provider configuration.

    Example Usage

    resource "stackit_redis_instance" "example" {
      project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      name       = "example-instance"
      version    = "7"
      plan_name  = "stackit-redis-1.2.10-replica"
      parameters = {
        sgw_acl                 = "193.148.160.0/19,45.129.40.0/21,45.135.244.0/22"
        enable_monitoring       = false
        down_after_milliseconds = 30000
        syslog                  = ["logs4.your-syslog-endpoint.com:54321"]
      }
    }
    
    # Only use the import statement, if you want to import an existing redis instance
    import {
      to = stackit_redis_instance.import-example
      id = "${var.project_id},${var.redis_instance_id}"
    }
    

    Create RedisInstance Resource

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

    Constructor syntax

    new RedisInstance(name: string, args: RedisInstanceArgs, opts?: CustomResourceOptions);
    @overload
    def RedisInstance(resource_name: str,
                      args: RedisInstanceArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def RedisInstance(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      plan_name: Optional[str] = None,
                      project_id: Optional[str] = None,
                      version: Optional[str] = None,
                      name: Optional[str] = None,
                      parameters: Optional[RedisInstanceParametersArgs] = None)
    func NewRedisInstance(ctx *Context, name string, args RedisInstanceArgs, opts ...ResourceOption) (*RedisInstance, error)
    public RedisInstance(string name, RedisInstanceArgs args, CustomResourceOptions? opts = null)
    public RedisInstance(String name, RedisInstanceArgs args)
    public RedisInstance(String name, RedisInstanceArgs args, CustomResourceOptions options)
    
    type: stackit:RedisInstance
    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 RedisInstanceArgs
    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 RedisInstanceArgs
    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 RedisInstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RedisInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RedisInstanceArgs
    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 redisInstanceResource = new Stackit.RedisInstance("redisInstanceResource", new()
    {
        PlanName = "string",
        ProjectId = "string",
        Version = "string",
        Name = "string",
        Parameters = new Stackit.Inputs.RedisInstanceParametersArgs
        {
            DownAfterMilliseconds = 0,
            EnableMonitoring = false,
            FailoverTimeout = 0,
            Graphite = "string",
            LazyfreeLazyEviction = "string",
            LazyfreeLazyExpire = "string",
            LuaTimeLimit = 0,
            MaxDiskThreshold = 0,
            Maxclients = 0,
            MaxmemoryPolicy = "string",
            MaxmemorySamples = 0,
            MetricsFrequency = 0,
            MetricsPrefix = "string",
            MinReplicasMaxLag = 0,
            MonitoringInstanceId = "string",
            NotifyKeyspaceEvents = "string",
            SgwAcl = "string",
            Snapshot = "string",
            Syslogs = new[]
            {
                "string",
            },
            TlsCiphers = new[]
            {
                "string",
            },
            TlsCiphersuites = "string",
            TlsProtocols = "string",
        },
    });
    
    example, err := stackit.NewRedisInstance(ctx, "redisInstanceResource", &stackit.RedisInstanceArgs{
    	PlanName:  pulumi.String("string"),
    	ProjectId: pulumi.String("string"),
    	Version:   pulumi.String("string"),
    	Name:      pulumi.String("string"),
    	Parameters: &stackit.RedisInstanceParametersArgs{
    		DownAfterMilliseconds: pulumi.Int(0),
    		EnableMonitoring:      pulumi.Bool(false),
    		FailoverTimeout:       pulumi.Int(0),
    		Graphite:              pulumi.String("string"),
    		LazyfreeLazyEviction:  pulumi.String("string"),
    		LazyfreeLazyExpire:    pulumi.String("string"),
    		LuaTimeLimit:          pulumi.Int(0),
    		MaxDiskThreshold:      pulumi.Int(0),
    		Maxclients:            pulumi.Int(0),
    		MaxmemoryPolicy:       pulumi.String("string"),
    		MaxmemorySamples:      pulumi.Int(0),
    		MetricsFrequency:      pulumi.Int(0),
    		MetricsPrefix:         pulumi.String("string"),
    		MinReplicasMaxLag:     pulumi.Int(0),
    		MonitoringInstanceId:  pulumi.String("string"),
    		NotifyKeyspaceEvents:  pulumi.String("string"),
    		SgwAcl:                pulumi.String("string"),
    		Snapshot:              pulumi.String("string"),
    		Syslogs: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		TlsCiphers: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		TlsCiphersuites: pulumi.String("string"),
    		TlsProtocols:    pulumi.String("string"),
    	},
    })
    
    var redisInstanceResource = new RedisInstance("redisInstanceResource", RedisInstanceArgs.builder()
        .planName("string")
        .projectId("string")
        .version("string")
        .name("string")
        .parameters(RedisInstanceParametersArgs.builder()
            .downAfterMilliseconds(0)
            .enableMonitoring(false)
            .failoverTimeout(0)
            .graphite("string")
            .lazyfreeLazyEviction("string")
            .lazyfreeLazyExpire("string")
            .luaTimeLimit(0)
            .maxDiskThreshold(0)
            .maxclients(0)
            .maxmemoryPolicy("string")
            .maxmemorySamples(0)
            .metricsFrequency(0)
            .metricsPrefix("string")
            .minReplicasMaxLag(0)
            .monitoringInstanceId("string")
            .notifyKeyspaceEvents("string")
            .sgwAcl("string")
            .snapshot("string")
            .syslogs("string")
            .tlsCiphers("string")
            .tlsCiphersuites("string")
            .tlsProtocols("string")
            .build())
        .build());
    
    redis_instance_resource = stackit.RedisInstance("redisInstanceResource",
        plan_name="string",
        project_id="string",
        version="string",
        name="string",
        parameters={
            "down_after_milliseconds": 0,
            "enable_monitoring": False,
            "failover_timeout": 0,
            "graphite": "string",
            "lazyfree_lazy_eviction": "string",
            "lazyfree_lazy_expire": "string",
            "lua_time_limit": 0,
            "max_disk_threshold": 0,
            "maxclients": 0,
            "maxmemory_policy": "string",
            "maxmemory_samples": 0,
            "metrics_frequency": 0,
            "metrics_prefix": "string",
            "min_replicas_max_lag": 0,
            "monitoring_instance_id": "string",
            "notify_keyspace_events": "string",
            "sgw_acl": "string",
            "snapshot": "string",
            "syslogs": ["string"],
            "tls_ciphers": ["string"],
            "tls_ciphersuites": "string",
            "tls_protocols": "string",
        })
    
    const redisInstanceResource = new stackit.RedisInstance("redisInstanceResource", {
        planName: "string",
        projectId: "string",
        version: "string",
        name: "string",
        parameters: {
            downAfterMilliseconds: 0,
            enableMonitoring: false,
            failoverTimeout: 0,
            graphite: "string",
            lazyfreeLazyEviction: "string",
            lazyfreeLazyExpire: "string",
            luaTimeLimit: 0,
            maxDiskThreshold: 0,
            maxclients: 0,
            maxmemoryPolicy: "string",
            maxmemorySamples: 0,
            metricsFrequency: 0,
            metricsPrefix: "string",
            minReplicasMaxLag: 0,
            monitoringInstanceId: "string",
            notifyKeyspaceEvents: "string",
            sgwAcl: "string",
            snapshot: "string",
            syslogs: ["string"],
            tlsCiphers: ["string"],
            tlsCiphersuites: "string",
            tlsProtocols: "string",
        },
    });
    
    type: stackit:RedisInstance
    properties:
        name: string
        parameters:
            downAfterMilliseconds: 0
            enableMonitoring: false
            failoverTimeout: 0
            graphite: string
            lazyfreeLazyEviction: string
            lazyfreeLazyExpire: string
            luaTimeLimit: 0
            maxDiskThreshold: 0
            maxclients: 0
            maxmemoryPolicy: string
            maxmemorySamples: 0
            metricsFrequency: 0
            metricsPrefix: string
            minReplicasMaxLag: 0
            monitoringInstanceId: string
            notifyKeyspaceEvents: string
            sgwAcl: string
            snapshot: string
            syslogs:
                - string
            tlsCiphers:
                - string
            tlsCiphersuites: string
            tlsProtocols: string
        planName: string
        projectId: string
        version: string
    

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

    PlanName string
    The selected plan name.
    ProjectId string
    STACKIT project ID to which the instance is associated.
    Version string
    The service version.
    Name string
    Instance name.
    Parameters RedisInstanceParameters
    PlanName string
    The selected plan name.
    ProjectId string
    STACKIT project ID to which the instance is associated.
    Version string
    The service version.
    Name string
    Instance name.
    Parameters RedisInstanceParametersArgs
    planName String
    The selected plan name.
    projectId String
    STACKIT project ID to which the instance is associated.
    version String
    The service version.
    name String
    Instance name.
    parameters RedisInstanceParameters
    planName string
    The selected plan name.
    projectId string
    STACKIT project ID to which the instance is associated.
    version string
    The service version.
    name string
    Instance name.
    parameters RedisInstanceParameters
    plan_name str
    The selected plan name.
    project_id str
    STACKIT project ID to which the instance is associated.
    version str
    The service version.
    name str
    Instance name.
    parameters RedisInstanceParametersArgs
    planName String
    The selected plan name.
    projectId String
    STACKIT project ID to which the instance is associated.
    version String
    The service version.
    name String
    Instance name.
    parameters Property Map

    Outputs

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

    CfGuid string
    CfOrganizationGuid string
    CfSpaceGuid string
    DashboardUrl string
    Id string
    The provider-assigned unique ID for this managed resource.
    ImageUrl string
    InstanceId string
    ID of the Redis instance.
    PlanId string
    The selected plan ID.
    CfGuid string
    CfOrganizationGuid string
    CfSpaceGuid string
    DashboardUrl string
    Id string
    The provider-assigned unique ID for this managed resource.
    ImageUrl string
    InstanceId string
    ID of the Redis instance.
    PlanId string
    The selected plan ID.
    cfGuid String
    cfOrganizationGuid String
    cfSpaceGuid String
    dashboardUrl String
    id String
    The provider-assigned unique ID for this managed resource.
    imageUrl String
    instanceId String
    ID of the Redis instance.
    planId String
    The selected plan ID.
    cfGuid string
    cfOrganizationGuid string
    cfSpaceGuid string
    dashboardUrl string
    id string
    The provider-assigned unique ID for this managed resource.
    imageUrl string
    instanceId string
    ID of the Redis instance.
    planId string
    The selected plan ID.
    cf_guid str
    cf_organization_guid str
    cf_space_guid str
    dashboard_url str
    id str
    The provider-assigned unique ID for this managed resource.
    image_url str
    instance_id str
    ID of the Redis instance.
    plan_id str
    The selected plan ID.
    cfGuid String
    cfOrganizationGuid String
    cfSpaceGuid String
    dashboardUrl String
    id String
    The provider-assigned unique ID for this managed resource.
    imageUrl String
    instanceId String
    ID of the Redis instance.
    planId String
    The selected plan ID.

    Look up Existing RedisInstance Resource

    Get an existing RedisInstance 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?: RedisInstanceState, opts?: CustomResourceOptions): RedisInstance
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cf_guid: Optional[str] = None,
            cf_organization_guid: Optional[str] = None,
            cf_space_guid: Optional[str] = None,
            dashboard_url: Optional[str] = None,
            image_url: Optional[str] = None,
            instance_id: Optional[str] = None,
            name: Optional[str] = None,
            parameters: Optional[RedisInstanceParametersArgs] = None,
            plan_id: Optional[str] = None,
            plan_name: Optional[str] = None,
            project_id: Optional[str] = None,
            version: Optional[str] = None) -> RedisInstance
    func GetRedisInstance(ctx *Context, name string, id IDInput, state *RedisInstanceState, opts ...ResourceOption) (*RedisInstance, error)
    public static RedisInstance Get(string name, Input<string> id, RedisInstanceState? state, CustomResourceOptions? opts = null)
    public static RedisInstance get(String name, Output<String> id, RedisInstanceState state, CustomResourceOptions options)
    resources:  _:    type: stackit:RedisInstance    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CfGuid string
    CfOrganizationGuid string
    CfSpaceGuid string
    DashboardUrl string
    ImageUrl string
    InstanceId string
    ID of the Redis instance.
    Name string
    Instance name.
    Parameters RedisInstanceParameters
    PlanId string
    The selected plan ID.
    PlanName string
    The selected plan name.
    ProjectId string
    STACKIT project ID to which the instance is associated.
    Version string
    The service version.
    CfGuid string
    CfOrganizationGuid string
    CfSpaceGuid string
    DashboardUrl string
    ImageUrl string
    InstanceId string
    ID of the Redis instance.
    Name string
    Instance name.
    Parameters RedisInstanceParametersArgs
    PlanId string
    The selected plan ID.
    PlanName string
    The selected plan name.
    ProjectId string
    STACKIT project ID to which the instance is associated.
    Version string
    The service version.
    cfGuid String
    cfOrganizationGuid String
    cfSpaceGuid String
    dashboardUrl String
    imageUrl String
    instanceId String
    ID of the Redis instance.
    name String
    Instance name.
    parameters RedisInstanceParameters
    planId String
    The selected plan ID.
    planName String
    The selected plan name.
    projectId String
    STACKIT project ID to which the instance is associated.
    version String
    The service version.
    cfGuid string
    cfOrganizationGuid string
    cfSpaceGuid string
    dashboardUrl string
    imageUrl string
    instanceId string
    ID of the Redis instance.
    name string
    Instance name.
    parameters RedisInstanceParameters
    planId string
    The selected plan ID.
    planName string
    The selected plan name.
    projectId string
    STACKIT project ID to which the instance is associated.
    version string
    The service version.
    cf_guid str
    cf_organization_guid str
    cf_space_guid str
    dashboard_url str
    image_url str
    instance_id str
    ID of the Redis instance.
    name str
    Instance name.
    parameters RedisInstanceParametersArgs
    plan_id str
    The selected plan ID.
    plan_name str
    The selected plan name.
    project_id str
    STACKIT project ID to which the instance is associated.
    version str
    The service version.
    cfGuid String
    cfOrganizationGuid String
    cfSpaceGuid String
    dashboardUrl String
    imageUrl String
    instanceId String
    ID of the Redis instance.
    name String
    Instance name.
    parameters Property Map
    planId String
    The selected plan ID.
    planName String
    The selected plan name.
    projectId String
    STACKIT project ID to which the instance is associated.
    version String
    The service version.

    Supporting Types

    RedisInstanceParameters, RedisInstanceParametersArgs

    DownAfterMilliseconds int
    The number of milliseconds after which the instance is considered down.
    EnableMonitoring bool
    Enable monitoring.
    FailoverTimeout int
    The failover timeout in milliseconds.
    Graphite string
    Graphite server URL (host and port). If set, monitoring with Graphite will be enabled.
    LazyfreeLazyEviction string
    The lazy eviction enablement (yes or no).
    LazyfreeLazyExpire string
    The lazy expire enablement (yes or no).
    LuaTimeLimit int
    The Lua time limit.
    MaxDiskThreshold int
    The maximum disk threshold in MB. If the disk usage exceeds this threshold, the instance will be stopped.
    Maxclients int
    The maximum number of clients.
    MaxmemoryPolicy string
    The policy to handle the maximum memory (volatile-lru, noeviction, etc).
    MaxmemorySamples int
    The maximum memory samples.
    MetricsFrequency int
    The frequency in seconds at which metrics are emitted.
    MetricsPrefix string
    The prefix for the metrics. Could be useful when using Graphite monitoring to prefix the metrics with a certain value, like an API key
    MinReplicasMaxLag int
    The minimum replicas maximum lag.
    MonitoringInstanceId string
    The ID of the STACKIT monitoring instance.
    NotifyKeyspaceEvents string
    The notify keyspace events.
    SgwAcl string
    Comma separated list of IP networks in CIDR notation which are allowed to access this instance.
    Snapshot string
    The snapshot configuration.
    Syslogs List<string>
    List of syslog servers to send logs to.
    TlsCiphers List<string>
    List of TLS ciphers to use.
    TlsCiphersuites string
    TLS cipher suites to use.
    TlsProtocols string
    TLS protocol to use.
    DownAfterMilliseconds int
    The number of milliseconds after which the instance is considered down.
    EnableMonitoring bool
    Enable monitoring.
    FailoverTimeout int
    The failover timeout in milliseconds.
    Graphite string
    Graphite server URL (host and port). If set, monitoring with Graphite will be enabled.
    LazyfreeLazyEviction string
    The lazy eviction enablement (yes or no).
    LazyfreeLazyExpire string
    The lazy expire enablement (yes or no).
    LuaTimeLimit int
    The Lua time limit.
    MaxDiskThreshold int
    The maximum disk threshold in MB. If the disk usage exceeds this threshold, the instance will be stopped.
    Maxclients int
    The maximum number of clients.
    MaxmemoryPolicy string
    The policy to handle the maximum memory (volatile-lru, noeviction, etc).
    MaxmemorySamples int
    The maximum memory samples.
    MetricsFrequency int
    The frequency in seconds at which metrics are emitted.
    MetricsPrefix string
    The prefix for the metrics. Could be useful when using Graphite monitoring to prefix the metrics with a certain value, like an API key
    MinReplicasMaxLag int
    The minimum replicas maximum lag.
    MonitoringInstanceId string
    The ID of the STACKIT monitoring instance.
    NotifyKeyspaceEvents string
    The notify keyspace events.
    SgwAcl string
    Comma separated list of IP networks in CIDR notation which are allowed to access this instance.
    Snapshot string
    The snapshot configuration.
    Syslogs []string
    List of syslog servers to send logs to.
    TlsCiphers []string
    List of TLS ciphers to use.
    TlsCiphersuites string
    TLS cipher suites to use.
    TlsProtocols string
    TLS protocol to use.
    downAfterMilliseconds Integer
    The number of milliseconds after which the instance is considered down.
    enableMonitoring Boolean
    Enable monitoring.
    failoverTimeout Integer
    The failover timeout in milliseconds.
    graphite String
    Graphite server URL (host and port). If set, monitoring with Graphite will be enabled.
    lazyfreeLazyEviction String
    The lazy eviction enablement (yes or no).
    lazyfreeLazyExpire String
    The lazy expire enablement (yes or no).
    luaTimeLimit Integer
    The Lua time limit.
    maxDiskThreshold Integer
    The maximum disk threshold in MB. If the disk usage exceeds this threshold, the instance will be stopped.
    maxclients Integer
    The maximum number of clients.
    maxmemoryPolicy String
    The policy to handle the maximum memory (volatile-lru, noeviction, etc).
    maxmemorySamples Integer
    The maximum memory samples.
    metricsFrequency Integer
    The frequency in seconds at which metrics are emitted.
    metricsPrefix String
    The prefix for the metrics. Could be useful when using Graphite monitoring to prefix the metrics with a certain value, like an API key
    minReplicasMaxLag Integer
    The minimum replicas maximum lag.
    monitoringInstanceId String
    The ID of the STACKIT monitoring instance.
    notifyKeyspaceEvents String
    The notify keyspace events.
    sgwAcl String
    Comma separated list of IP networks in CIDR notation which are allowed to access this instance.
    snapshot String
    The snapshot configuration.
    syslogs List<String>
    List of syslog servers to send logs to.
    tlsCiphers List<String>
    List of TLS ciphers to use.
    tlsCiphersuites String
    TLS cipher suites to use.
    tlsProtocols String
    TLS protocol to use.
    downAfterMilliseconds number
    The number of milliseconds after which the instance is considered down.
    enableMonitoring boolean
    Enable monitoring.
    failoverTimeout number
    The failover timeout in milliseconds.
    graphite string
    Graphite server URL (host and port). If set, monitoring with Graphite will be enabled.
    lazyfreeLazyEviction string
    The lazy eviction enablement (yes or no).
    lazyfreeLazyExpire string
    The lazy expire enablement (yes or no).
    luaTimeLimit number
    The Lua time limit.
    maxDiskThreshold number
    The maximum disk threshold in MB. If the disk usage exceeds this threshold, the instance will be stopped.
    maxclients number
    The maximum number of clients.
    maxmemoryPolicy string
    The policy to handle the maximum memory (volatile-lru, noeviction, etc).
    maxmemorySamples number
    The maximum memory samples.
    metricsFrequency number
    The frequency in seconds at which metrics are emitted.
    metricsPrefix string
    The prefix for the metrics. Could be useful when using Graphite monitoring to prefix the metrics with a certain value, like an API key
    minReplicasMaxLag number
    The minimum replicas maximum lag.
    monitoringInstanceId string
    The ID of the STACKIT monitoring instance.
    notifyKeyspaceEvents string
    The notify keyspace events.
    sgwAcl string
    Comma separated list of IP networks in CIDR notation which are allowed to access this instance.
    snapshot string
    The snapshot configuration.
    syslogs string[]
    List of syslog servers to send logs to.
    tlsCiphers string[]
    List of TLS ciphers to use.
    tlsCiphersuites string
    TLS cipher suites to use.
    tlsProtocols string
    TLS protocol to use.
    down_after_milliseconds int
    The number of milliseconds after which the instance is considered down.
    enable_monitoring bool
    Enable monitoring.
    failover_timeout int
    The failover timeout in milliseconds.
    graphite str
    Graphite server URL (host and port). If set, monitoring with Graphite will be enabled.
    lazyfree_lazy_eviction str
    The lazy eviction enablement (yes or no).
    lazyfree_lazy_expire str
    The lazy expire enablement (yes or no).
    lua_time_limit int
    The Lua time limit.
    max_disk_threshold int
    The maximum disk threshold in MB. If the disk usage exceeds this threshold, the instance will be stopped.
    maxclients int
    The maximum number of clients.
    maxmemory_policy str
    The policy to handle the maximum memory (volatile-lru, noeviction, etc).
    maxmemory_samples int
    The maximum memory samples.
    metrics_frequency int
    The frequency in seconds at which metrics are emitted.
    metrics_prefix str
    The prefix for the metrics. Could be useful when using Graphite monitoring to prefix the metrics with a certain value, like an API key
    min_replicas_max_lag int
    The minimum replicas maximum lag.
    monitoring_instance_id str
    The ID of the STACKIT monitoring instance.
    notify_keyspace_events str
    The notify keyspace events.
    sgw_acl str
    Comma separated list of IP networks in CIDR notation which are allowed to access this instance.
    snapshot str
    The snapshot configuration.
    syslogs Sequence[str]
    List of syslog servers to send logs to.
    tls_ciphers Sequence[str]
    List of TLS ciphers to use.
    tls_ciphersuites str
    TLS cipher suites to use.
    tls_protocols str
    TLS protocol to use.
    downAfterMilliseconds Number
    The number of milliseconds after which the instance is considered down.
    enableMonitoring Boolean
    Enable monitoring.
    failoverTimeout Number
    The failover timeout in milliseconds.
    graphite String
    Graphite server URL (host and port). If set, monitoring with Graphite will be enabled.
    lazyfreeLazyEviction String
    The lazy eviction enablement (yes or no).
    lazyfreeLazyExpire String
    The lazy expire enablement (yes or no).
    luaTimeLimit Number
    The Lua time limit.
    maxDiskThreshold Number
    The maximum disk threshold in MB. If the disk usage exceeds this threshold, the instance will be stopped.
    maxclients Number
    The maximum number of clients.
    maxmemoryPolicy String
    The policy to handle the maximum memory (volatile-lru, noeviction, etc).
    maxmemorySamples Number
    The maximum memory samples.
    metricsFrequency Number
    The frequency in seconds at which metrics are emitted.
    metricsPrefix String
    The prefix for the metrics. Could be useful when using Graphite monitoring to prefix the metrics with a certain value, like an API key
    minReplicasMaxLag Number
    The minimum replicas maximum lag.
    monitoringInstanceId String
    The ID of the STACKIT monitoring instance.
    notifyKeyspaceEvents String
    The notify keyspace events.
    sgwAcl String
    Comma separated list of IP networks in CIDR notation which are allowed to access this instance.
    snapshot String
    The snapshot configuration.
    syslogs List<String>
    List of syslog servers to send logs to.
    tlsCiphers List<String>
    List of TLS ciphers to use.
    tlsCiphersuites String
    TLS cipher suites to use.
    tlsProtocols String
    TLS protocol to use.

    Package Details

    Repository
    stackit stackitcloud/pulumi-stackit
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the stackit Terraform Provider.
    stackit logo
    Viewing docs for stackit v0.0.4
    published on Friday, Feb 20, 2026 by stackitcloud
      Try Pulumi Cloud free. Your team will thank you.