google_scc_mute_config

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

resource "google_scc_mute_config" "default" {
  mute_config_id = "my-config"
  parent         = "organizations/123456789"
  filter         = "category: \"OS_VULNERABILITY\""
  description    = "My Mute Config"
}

Argument Reference

The following arguments are supported:


Attributes Reference

In addition to the arguments listed above, the following computed attributes are exported:

Timeouts

This resource provides the following Timeouts configuration options:

Import

MuteConfig can be imported using any of these accepted formats:

In Terraform v1.5.0 and later, use an import block to import MuteConfig using one of the formats above. For example:

import {
  id = "{{name}}"
  to = google_scc_mute_config.default
}

When using the terraform import command, MuteConfig can be imported using one of the formats above. For example:

$ terraform import google_scc_mute_config.default {{name}}