V2ProjectMuteConfigArgs

data class V2ProjectMuteConfigArgs(val description: Output<String>? = null, val filter: Output<String>? = null, val location: Output<String>? = null, val muteConfigId: Output<String>? = null, val project: Output<String>? = null, val type: Output<String>? = null) : ConvertibleToJava<V2ProjectMuteConfigArgs>

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 ProjectMuteConfig, see:

Example Usage

Scc V2 Project Mute Config Basic

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const _default = new gcp.securitycenter.V2ProjectMuteConfig("default", {
muteConfigId: "my-config",
project: "my-project-name",
location: "global",
description: "My custom Cloud Security Command Center Finding Project mute Configuration",
filter: "severity = \"HIGH\"",
type: "STATIC",
});
import pulumi
import pulumi_gcp as gcp
default = gcp.securitycenter.V2ProjectMuteConfig("default",
mute_config_id="my-config",
project="my-project-name",
location="global",
description="My custom Cloud Security Command Center Finding Project mute Configuration",
filter="severity = \"HIGH\"",
type="STATIC")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var @default = new Gcp.SecurityCenter.V2ProjectMuteConfig("default", new()
{
MuteConfigId = "my-config",
Project = "my-project-name",
Location = "global",
Description = "My custom Cloud Security Command Center Finding Project mute Configuration",
Filter = "severity = \"HIGH\"",
Type = "STATIC",
});
});
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.NewV2ProjectMuteConfig(ctx, "default", &securitycenter.V2ProjectMuteConfigArgs{
MuteConfigId: pulumi.String("my-config"),
Project: pulumi.String("my-project-name"),
Location: pulumi.String("global"),
Description: pulumi.String("My custom Cloud Security Command Center Finding Project mute Configuration"),
Filter: pulumi.String("severity = \"HIGH\""),
Type: pulumi.String("STATIC"),
})
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.V2ProjectMuteConfig;
import com.pulumi.gcp.securitycenter.V2ProjectMuteConfigArgs;
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 V2ProjectMuteConfig("default", V2ProjectMuteConfigArgs.builder()
.muteConfigId("my-config")
.project("my-project-name")
.location("global")
.description("My custom Cloud Security Command Center Finding Project mute Configuration")
.filter("severity = \"HIGH\"")
.type("STATIC")
.build());
}
}
resources:
default:
type: gcp:securitycenter:V2ProjectMuteConfig
properties:
muteConfigId: my-config
project: my-project-name
location: global
description: My custom Cloud Security Command Center Finding Project mute Configuration
filter: severity = "HIGH"
type: STATIC

Import

ProjectMuteConfig can be imported using any of these accepted formats:

  • projects/{{project}}/locations/{{location}}/muteConfigs/{{mute_config_id}}

  • {{project}}/{{location}}/{{mute_config_id}}

  • {{location}}/{{mute_config_id}} When using the pulumi import command, ProjectMuteConfig can be imported using one of the formats above. For example:

$ pulumi import gcp:securitycenter/v2ProjectMuteConfig:V2ProjectMuteConfig default projects/{{project}}/locations/{{location}}/muteConfigs/{{mute_config_id}}
$ pulumi import gcp:securitycenter/v2ProjectMuteConfig:V2ProjectMuteConfig default {{project}}/{{location}}/{{mute_config_id}}
$ pulumi import gcp:securitycenter/v2ProjectMuteConfig:V2ProjectMuteConfig default {{location}}/{{mute_config_id}}

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, filter: Output<String>? = null, location: Output<String>? = null, muteConfigId: Output<String>? = null, project: Output<String>? = null, type: Output<String>? = null)

Properties

Link copied to clipboard
val description: Output<String>? = null

A description of the mute config.

Link copied to clipboard
val filter: Output<String>? = null

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.

Link copied to clipboard
val location: Output<String>? = null

location Id is provided by project. If not provided, Use global as default.

Link copied to clipboard
val muteConfigId: Output<String>? = null

Unique identifier provided by the client within the parent scope.

Link copied to clipboard
val project: Output<String>? = null

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Link copied to clipboard
val type: Output<String>? = null

The type of the mute config.

Functions

Link copied to clipboard
open override fun toJava(): V2ProjectMuteConfigArgs