Mute Config Args
Mute Findings is a volume management feature in Security Command Center that lets you manually or programmatically hide irrelevant findings, and create filters to automatically silence existing and future findings based on criteria you specify. To get more information about MuteConfig, see:
Example Usage
Scc Mute Config
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const _default = new gcp.securitycenter.MuteConfig("default", {
muteConfigId: "my-config",
parent: "organizations/123456789",
filter: "category: \"OS_VULNERABILITY\"",
description: "My Mute Config",
type: "DYNAMIC",
expiryTime: "2215-02-03T15:01:23Z",
});
import pulumi
import pulumi_gcp as gcp
default = gcp.securitycenter.MuteConfig("default",
mute_config_id="my-config",
parent="organizations/123456789",
filter="category: \"OS_VULNERABILITY\"",
description="My Mute Config",
type="DYNAMIC",
expiry_time="2215-02-03T15:01:23Z")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var @default = new Gcp.SecurityCenter.MuteConfig("default", new()
{
MuteConfigId = "my-config",
Parent = "organizations/123456789",
Filter = "category: \"OS_VULNERABILITY\"",
Description = "My Mute Config",
Type = "DYNAMIC",
ExpiryTime = "2215-02-03T15:01:23Z",
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/securitycenter"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := securitycenter.NewMuteConfig(ctx, "default", &securitycenter.MuteConfigArgs{
MuteConfigId: pulumi.String("my-config"),
Parent: pulumi.String("organizations/123456789"),
Filter: pulumi.String("category: \"OS_VULNERABILITY\""),
Description: pulumi.String("My Mute Config"),
Type: pulumi.String("DYNAMIC"),
ExpiryTime: pulumi.String("2215-02-03T15:01:23Z"),
})
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.gcp.securitycenter.MuteConfig;
import com.pulumi.gcp.securitycenter.MuteConfigArgs;
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 default_ = new MuteConfig("default", MuteConfigArgs.builder()
.muteConfigId("my-config")
.parent("organizations/123456789")
.filter("category: \"OS_VULNERABILITY\"")
.description("My Mute Config")
.type("DYNAMIC")
.expiryTime("2215-02-03T15:01:23Z")
.build());
}
}
resources:
default:
type: gcp:securitycenter:MuteConfig
properties:
muteConfigId: my-config
parent: organizations/123456789
filter: 'category: "OS_VULNERABILITY"'
description: My Mute Config
type: DYNAMIC
expiryTime: 2215-02-03T15:01:23Z
Import
MuteConfig can be imported using any of these accepted formats:
{{name}}
When using thepulumi import
command, MuteConfig can be imported using one of the formats above. For example:
$ pulumi import gcp:securitycenter/muteConfig:MuteConfig default {{name}}
Constructors
Properties
A description of the mute config.
Optional. The expiry of the mute config. Only applicable for dynamic configs. If the expiry is set, when the config expires, it is removed from all findings. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
An expression that defines the filter to apply across create/update events of findings. While creating a filter string, be mindful of the scope in which the mute configuration is being created. E.g., If a filter contains project = X but is created under the project = Y scope, it might not match any findings.
Unique identifier provided by the client within the parent scope.