1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. kvstore
  5. AuditLogConfig
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.kvstore.AuditLogConfig

Explore with Pulumi AI

Provides a Tair (Redis OSS-Compatible) And Memcache (KVStore) Audit Log Config resource.

NOTE: Available since v1.130.0.

Example Usage

Basic Usage

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

const config = new pulumi.Config();
const name = config.get("name") || "tf-example";
const _default = alicloud.kvstore.getZones({});
const defaultGetResourceGroups = alicloud.resourcemanager.getResourceGroups({
    status: "OK",
});
const defaultNetwork = new alicloud.vpc.Network("default", {
    vpcName: name,
    cidrBlock: "10.4.0.0/16",
});
const defaultSwitch = new alicloud.vpc.Switch("default", {
    vswitchName: name,
    cidrBlock: "10.4.0.0/24",
    vpcId: defaultNetwork.id,
    zoneId: _default.then(_default => _default.zones?.[0]?.id),
});
const defaultInstance = new alicloud.kvstore.Instance("default", {
    dbInstanceName: name,
    vswitchId: defaultSwitch.id,
    resourceGroupId: defaultGetResourceGroups.then(defaultGetResourceGroups => defaultGetResourceGroups.ids?.[0]),
    zoneId: _default.then(_default => _default.zones?.[0]?.id),
    instanceClass: "redis.master.large.default",
    instanceType: "Redis",
    engineVersion: "5.0",
    securityIps: ["10.23.12.24"],
    config: {
        appendonly: "yes",
        "lazyfree-lazy-eviction": "yes",
    },
    tags: {
        Created: "TF",
        For: "example",
    },
});
const example = new alicloud.kvstore.AuditLogConfig("example", {
    instanceId: defaultInstance.id,
    dbAudit: true,
    retention: 1,
});
Copy
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "tf-example"
default = alicloud.kvstore.get_zones()
default_get_resource_groups = alicloud.resourcemanager.get_resource_groups(status="OK")
default_network = alicloud.vpc.Network("default",
    vpc_name=name,
    cidr_block="10.4.0.0/16")
default_switch = alicloud.vpc.Switch("default",
    vswitch_name=name,
    cidr_block="10.4.0.0/24",
    vpc_id=default_network.id,
    zone_id=default.zones[0].id)
default_instance = alicloud.kvstore.Instance("default",
    db_instance_name=name,
    vswitch_id=default_switch.id,
    resource_group_id=default_get_resource_groups.ids[0],
    zone_id=default.zones[0].id,
    instance_class="redis.master.large.default",
    instance_type="Redis",
    engine_version="5.0",
    security_ips=["10.23.12.24"],
    config={
        "appendonly": "yes",
        "lazyfree-lazy-eviction": "yes",
    },
    tags={
        "Created": "TF",
        "For": "example",
    })
example = alicloud.kvstore.AuditLogConfig("example",
    instance_id=default_instance.id,
    db_audit=True,
    retention=1)
Copy
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/kvstore"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		name := "tf-example"
		if param := cfg.Get("name"); param != "" {
			name = param
		}
		_default, err := kvstore.GetZones(ctx, &kvstore.GetZonesArgs{}, nil)
		if err != nil {
			return err
		}
		defaultGetResourceGroups, err := resourcemanager.GetResourceGroups(ctx, &resourcemanager.GetResourceGroupsArgs{
			Status: pulumi.StringRef("OK"),
		}, nil)
		if err != nil {
			return err
		}
		defaultNetwork, err := vpc.NewNetwork(ctx, "default", &vpc.NetworkArgs{
			VpcName:   pulumi.String(name),
			CidrBlock: pulumi.String("10.4.0.0/16"),
		})
		if err != nil {
			return err
		}
		defaultSwitch, err := vpc.NewSwitch(ctx, "default", &vpc.SwitchArgs{
			VswitchName: pulumi.String(name),
			CidrBlock:   pulumi.String("10.4.0.0/24"),
			VpcId:       defaultNetwork.ID(),
			ZoneId:      pulumi.String(_default.Zones[0].Id),
		})
		if err != nil {
			return err
		}
		defaultInstance, err := kvstore.NewInstance(ctx, "default", &kvstore.InstanceArgs{
			DbInstanceName:  pulumi.String(name),
			VswitchId:       defaultSwitch.ID(),
			ResourceGroupId: pulumi.String(defaultGetResourceGroups.Ids[0]),
			ZoneId:          pulumi.String(_default.Zones[0].Id),
			InstanceClass:   pulumi.String("redis.master.large.default"),
			InstanceType:    pulumi.String("Redis"),
			EngineVersion:   pulumi.String("5.0"),
			SecurityIps: pulumi.StringArray{
				pulumi.String("10.23.12.24"),
			},
			Config: pulumi.StringMap{
				"appendonly":             pulumi.String("yes"),
				"lazyfree-lazy-eviction": pulumi.String("yes"),
			},
			Tags: pulumi.StringMap{
				"Created": pulumi.String("TF"),
				"For":     pulumi.String("example"),
			},
		})
		if err != nil {
			return err
		}
		_, err = kvstore.NewAuditLogConfig(ctx, "example", &kvstore.AuditLogConfigArgs{
			InstanceId: defaultInstance.ID(),
			DbAudit:    pulumi.Bool(true),
			Retention:  pulumi.Int(1),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "tf-example";
    var @default = AliCloud.KVStore.GetZones.Invoke();

    var defaultGetResourceGroups = AliCloud.ResourceManager.GetResourceGroups.Invoke(new()
    {
        Status = "OK",
    });

    var defaultNetwork = new AliCloud.Vpc.Network("default", new()
    {
        VpcName = name,
        CidrBlock = "10.4.0.0/16",
    });

    var defaultSwitch = new AliCloud.Vpc.Switch("default", new()
    {
        VswitchName = name,
        CidrBlock = "10.4.0.0/24",
        VpcId = defaultNetwork.Id,
        ZoneId = @default.Apply(@default => @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id)),
    });

    var defaultInstance = new AliCloud.KVStore.Instance("default", new()
    {
        DbInstanceName = name,
        VswitchId = defaultSwitch.Id,
        ResourceGroupId = defaultGetResourceGroups.Apply(getResourceGroupsResult => getResourceGroupsResult.Ids[0]),
        ZoneId = @default.Apply(@default => @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id)),
        InstanceClass = "redis.master.large.default",
        InstanceType = "Redis",
        EngineVersion = "5.0",
        SecurityIps = new[]
        {
            "10.23.12.24",
        },
        Config = 
        {
            { "appendonly", "yes" },
            { "lazyfree-lazy-eviction", "yes" },
        },
        Tags = 
        {
            { "Created", "TF" },
            { "For", "example" },
        },
    });

    var example = new AliCloud.KVStore.AuditLogConfig("example", new()
    {
        InstanceId = defaultInstance.Id,
        DbAudit = true,
        Retention = 1,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.kvstore.KvstoreFunctions;
import com.pulumi.alicloud.kvstore.inputs.GetZonesArgs;
import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
import com.pulumi.alicloud.resourcemanager.inputs.GetResourceGroupsArgs;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.Switch;
import com.pulumi.alicloud.vpc.SwitchArgs;
import com.pulumi.alicloud.kvstore.Instance;
import com.pulumi.alicloud.kvstore.InstanceArgs;
import com.pulumi.alicloud.kvstore.AuditLogConfig;
import com.pulumi.alicloud.kvstore.AuditLogConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var config = ctx.config();
        final var name = config.get("name").orElse("tf-example");
        final var default = KvstoreFunctions.getZones();

        final var defaultGetResourceGroups = ResourcemanagerFunctions.getResourceGroups(GetResourceGroupsArgs.builder()
            .status("OK")
            .build());

        var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
            .vpcName(name)
            .cidrBlock("10.4.0.0/16")
            .build());

        var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
            .vswitchName(name)
            .cidrBlock("10.4.0.0/24")
            .vpcId(defaultNetwork.id())
            .zoneId(default_.zones()[0].id())
            .build());

        var defaultInstance = new Instance("defaultInstance", InstanceArgs.builder()
            .dbInstanceName(name)
            .vswitchId(defaultSwitch.id())
            .resourceGroupId(defaultGetResourceGroups.applyValue(getResourceGroupsResult -> getResourceGroupsResult.ids()[0]))
            .zoneId(default_.zones()[0].id())
            .instanceClass("redis.master.large.default")
            .instanceType("Redis")
            .engineVersion("5.0")
            .securityIps("10.23.12.24")
            .config(Map.ofEntries(
                Map.entry("appendonly", "yes"),
                Map.entry("lazyfree-lazy-eviction", "yes")
            ))
            .tags(Map.ofEntries(
                Map.entry("Created", "TF"),
                Map.entry("For", "example")
            ))
            .build());

        var example = new AuditLogConfig("example", AuditLogConfigArgs.builder()
            .instanceId(defaultInstance.id())
            .dbAudit(true)
            .retention(1)
            .build());

    }
}
Copy
configuration:
  name:
    type: string
    default: tf-example
resources:
  defaultNetwork:
    type: alicloud:vpc:Network
    name: default
    properties:
      vpcName: ${name}
      cidrBlock: 10.4.0.0/16
  defaultSwitch:
    type: alicloud:vpc:Switch
    name: default
    properties:
      vswitchName: ${name}
      cidrBlock: 10.4.0.0/24
      vpcId: ${defaultNetwork.id}
      zoneId: ${default.zones[0].id}
  defaultInstance:
    type: alicloud:kvstore:Instance
    name: default
    properties:
      dbInstanceName: ${name}
      vswitchId: ${defaultSwitch.id}
      resourceGroupId: ${defaultGetResourceGroups.ids[0]}
      zoneId: ${default.zones[0].id}
      instanceClass: redis.master.large.default
      instanceType: Redis
      engineVersion: '5.0'
      securityIps:
        - 10.23.12.24
      config:
        appendonly: yes
        lazyfree-lazy-eviction: yes
      tags:
        Created: TF
        For: example
  example:
    type: alicloud:kvstore:AuditLogConfig
    properties:
      instanceId: ${defaultInstance.id}
      dbAudit: true
      retention: 1
variables:
  default:
    fn::invoke:
      function: alicloud:kvstore:getZones
      arguments: {}
  defaultGetResourceGroups:
    fn::invoke:
      function: alicloud:resourcemanager:getResourceGroups
      arguments:
        status: OK
Copy

Create AuditLogConfig Resource

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

Constructor syntax

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

@overload
def AuditLogConfig(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   instance_id: Optional[str] = None,
                   db_audit: Optional[bool] = None,
                   retention: Optional[int] = None)
func NewAuditLogConfig(ctx *Context, name string, args AuditLogConfigArgs, opts ...ResourceOption) (*AuditLogConfig, error)
public AuditLogConfig(string name, AuditLogConfigArgs args, CustomResourceOptions? opts = null)
public AuditLogConfig(String name, AuditLogConfigArgs args)
public AuditLogConfig(String name, AuditLogConfigArgs args, CustomResourceOptions options)
type: alicloud:kvstore:AuditLogConfig
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. AuditLogConfigArgs
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. AuditLogConfigArgs
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. AuditLogConfigArgs
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. AuditLogConfigArgs
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. AuditLogConfigArgs
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 auditLogConfigResource = new AliCloud.KVStore.AuditLogConfig("auditLogConfigResource", new()
{
    InstanceId = "string",
    DbAudit = false,
    Retention = 0,
});
Copy
example, err := kvstore.NewAuditLogConfig(ctx, "auditLogConfigResource", &kvstore.AuditLogConfigArgs{
	InstanceId: pulumi.String("string"),
	DbAudit:    pulumi.Bool(false),
	Retention:  pulumi.Int(0),
})
Copy
var auditLogConfigResource = new AuditLogConfig("auditLogConfigResource", AuditLogConfigArgs.builder()
    .instanceId("string")
    .dbAudit(false)
    .retention(0)
    .build());
Copy
audit_log_config_resource = alicloud.kvstore.AuditLogConfig("auditLogConfigResource",
    instance_id="string",
    db_audit=False,
    retention=0)
Copy
const auditLogConfigResource = new alicloud.kvstore.AuditLogConfig("auditLogConfigResource", {
    instanceId: "string",
    dbAudit: false,
    retention: 0,
});
Copy
type: alicloud:kvstore:AuditLogConfig
properties:
    dbAudit: false
    instanceId: string
    retention: 0
Copy

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

InstanceId
This property is required.
Changes to this property will trigger replacement.
string
Instance ID, Call the Describeinstances Get.
DbAudit bool

Indicates Whether to Enable the Audit Log. Valid value:

  • true: Default Value, Open.
  • false: Closed.

Note: When the Instance for the Cluster Architecture Or Read/Write Split Architecture, at the Same Time to Open Or Close the Data Node and the Proxy Node of the Audit Log Doesn't Support Separate Open.

Retention int

Audit Log Retention Period Value: 1~365.

NOTE: When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.

InstanceId
This property is required.
Changes to this property will trigger replacement.
string
Instance ID, Call the Describeinstances Get.
DbAudit bool

Indicates Whether to Enable the Audit Log. Valid value:

  • true: Default Value, Open.
  • false: Closed.

Note: When the Instance for the Cluster Architecture Or Read/Write Split Architecture, at the Same Time to Open Or Close the Data Node and the Proxy Node of the Audit Log Doesn't Support Separate Open.

Retention int

Audit Log Retention Period Value: 1~365.

NOTE: When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.

instanceId
This property is required.
Changes to this property will trigger replacement.
String
Instance ID, Call the Describeinstances Get.
dbAudit Boolean

Indicates Whether to Enable the Audit Log. Valid value:

  • true: Default Value, Open.
  • false: Closed.

Note: When the Instance for the Cluster Architecture Or Read/Write Split Architecture, at the Same Time to Open Or Close the Data Node and the Proxy Node of the Audit Log Doesn't Support Separate Open.

retention Integer

Audit Log Retention Period Value: 1~365.

NOTE: When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.

instanceId
This property is required.
Changes to this property will trigger replacement.
string
Instance ID, Call the Describeinstances Get.
dbAudit boolean

Indicates Whether to Enable the Audit Log. Valid value:

  • true: Default Value, Open.
  • false: Closed.

Note: When the Instance for the Cluster Architecture Or Read/Write Split Architecture, at the Same Time to Open Or Close the Data Node and the Proxy Node of the Audit Log Doesn't Support Separate Open.

retention number

Audit Log Retention Period Value: 1~365.

NOTE: When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.

instance_id
This property is required.
Changes to this property will trigger replacement.
str
Instance ID, Call the Describeinstances Get.
db_audit bool

Indicates Whether to Enable the Audit Log. Valid value:

  • true: Default Value, Open.
  • false: Closed.

Note: When the Instance for the Cluster Architecture Or Read/Write Split Architecture, at the Same Time to Open Or Close the Data Node and the Proxy Node of the Audit Log Doesn't Support Separate Open.

retention int

Audit Log Retention Period Value: 1~365.

NOTE: When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.

instanceId
This property is required.
Changes to this property will trigger replacement.
String
Instance ID, Call the Describeinstances Get.
dbAudit Boolean

Indicates Whether to Enable the Audit Log. Valid value:

  • true: Default Value, Open.
  • false: Closed.

Note: When the Instance for the Cluster Architecture Or Read/Write Split Architecture, at the Same Time to Open Or Close the Data Node and the Proxy Node of the Audit Log Doesn't Support Separate Open.

retention Number

Audit Log Retention Period Value: 1~365.

NOTE: When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.

Outputs

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

CreateTime string
Instance Creation Time.
Id string
The provider-assigned unique ID for this managed resource.
Status string
The status of the resource.
CreateTime string
Instance Creation Time.
Id string
The provider-assigned unique ID for this managed resource.
Status string
The status of the resource.
createTime String
Instance Creation Time.
id String
The provider-assigned unique ID for this managed resource.
status String
The status of the resource.
createTime string
Instance Creation Time.
id string
The provider-assigned unique ID for this managed resource.
status string
The status of the resource.
create_time str
Instance Creation Time.
id str
The provider-assigned unique ID for this managed resource.
status str
The status of the resource.
createTime String
Instance Creation Time.
id String
The provider-assigned unique ID for this managed resource.
status String
The status of the resource.

Look up Existing AuditLogConfig Resource

Get an existing AuditLogConfig 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?: AuditLogConfigState, opts?: CustomResourceOptions): AuditLogConfig
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        create_time: Optional[str] = None,
        db_audit: Optional[bool] = None,
        instance_id: Optional[str] = None,
        retention: Optional[int] = None,
        status: Optional[str] = None) -> AuditLogConfig
func GetAuditLogConfig(ctx *Context, name string, id IDInput, state *AuditLogConfigState, opts ...ResourceOption) (*AuditLogConfig, error)
public static AuditLogConfig Get(string name, Input<string> id, AuditLogConfigState? state, CustomResourceOptions? opts = null)
public static AuditLogConfig get(String name, Output<String> id, AuditLogConfigState state, CustomResourceOptions options)
resources:  _:    type: alicloud:kvstore:AuditLogConfig    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:
CreateTime string
Instance Creation Time.
DbAudit bool

Indicates Whether to Enable the Audit Log. Valid value:

  • true: Default Value, Open.
  • false: Closed.

Note: When the Instance for the Cluster Architecture Or Read/Write Split Architecture, at the Same Time to Open Or Close the Data Node and the Proxy Node of the Audit Log Doesn't Support Separate Open.

InstanceId Changes to this property will trigger replacement. string
Instance ID, Call the Describeinstances Get.
Retention int

Audit Log Retention Period Value: 1~365.

NOTE: When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.

Status string
The status of the resource.
CreateTime string
Instance Creation Time.
DbAudit bool

Indicates Whether to Enable the Audit Log. Valid value:

  • true: Default Value, Open.
  • false: Closed.

Note: When the Instance for the Cluster Architecture Or Read/Write Split Architecture, at the Same Time to Open Or Close the Data Node and the Proxy Node of the Audit Log Doesn't Support Separate Open.

InstanceId Changes to this property will trigger replacement. string
Instance ID, Call the Describeinstances Get.
Retention int

Audit Log Retention Period Value: 1~365.

NOTE: When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.

Status string
The status of the resource.
createTime String
Instance Creation Time.
dbAudit Boolean

Indicates Whether to Enable the Audit Log. Valid value:

  • true: Default Value, Open.
  • false: Closed.

Note: When the Instance for the Cluster Architecture Or Read/Write Split Architecture, at the Same Time to Open Or Close the Data Node and the Proxy Node of the Audit Log Doesn't Support Separate Open.

instanceId Changes to this property will trigger replacement. String
Instance ID, Call the Describeinstances Get.
retention Integer

Audit Log Retention Period Value: 1~365.

NOTE: When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.

status String
The status of the resource.
createTime string
Instance Creation Time.
dbAudit boolean

Indicates Whether to Enable the Audit Log. Valid value:

  • true: Default Value, Open.
  • false: Closed.

Note: When the Instance for the Cluster Architecture Or Read/Write Split Architecture, at the Same Time to Open Or Close the Data Node and the Proxy Node of the Audit Log Doesn't Support Separate Open.

instanceId Changes to this property will trigger replacement. string
Instance ID, Call the Describeinstances Get.
retention number

Audit Log Retention Period Value: 1~365.

NOTE: When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.

status string
The status of the resource.
create_time str
Instance Creation Time.
db_audit bool

Indicates Whether to Enable the Audit Log. Valid value:

  • true: Default Value, Open.
  • false: Closed.

Note: When the Instance for the Cluster Architecture Or Read/Write Split Architecture, at the Same Time to Open Or Close the Data Node and the Proxy Node of the Audit Log Doesn't Support Separate Open.

instance_id Changes to this property will trigger replacement. str
Instance ID, Call the Describeinstances Get.
retention int

Audit Log Retention Period Value: 1~365.

NOTE: When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.

status str
The status of the resource.
createTime String
Instance Creation Time.
dbAudit Boolean

Indicates Whether to Enable the Audit Log. Valid value:

  • true: Default Value, Open.
  • false: Closed.

Note: When the Instance for the Cluster Architecture Or Read/Write Split Architecture, at the Same Time to Open Or Close the Data Node and the Proxy Node of the Audit Log Doesn't Support Separate Open.

instanceId Changes to this property will trigger replacement. String
Instance ID, Call the Describeinstances Get.
retention Number

Audit Log Retention Period Value: 1~365.

NOTE: When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.

status String
The status of the resource.

Import

Tair (Redis OSS-Compatible) And Memcache (KVStore) Audit Log Config can be imported using the id, e.g.

$ pulumi import alicloud:kvstore/auditLogConfig:AuditLogConfig example <instance_id>
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.