Namespace Pulumi.AliCloud.Log
Classes
Alert
AlertArgs
AlertState
Audit
SLS log audit exists in the form of log service app.
In addition to inheriting all SLS functions, it also enhances the real-time automatic centralized collection of audit related logs across multi cloud products under multi accounts, and provides support for storage, query and information summary required by audit. It covers actiontrail, OSS, NAS, SLB, API gateway, RDS, WAF, cloud firewall, cloud security center and other products.
NOTE: Available in 1.81.0
Example Usage
using Pulumi;
using AliCloud = Pulumi.AliCloud;
class MyStack : Stack
{
public MyStack()
{
var example = new AliCloud.Log.Audit("example", new AliCloud.Log.AuditArgs
{
Aliuid = "12345678",
DisplayName = "tf-audit-test",
VariableMap =
{
{ "actiontrail_enabled", "true" },
{ "actiontrail_ttl", "180" },
{ "oss_access_enabled", "true" },
{ "oss_access_ttl", "180" },
},
});
}
}