google_scc_source

A Cloud Security Command Center's (Cloud SCC) finding source. A finding source is an entity or a mechanism that can produce a finding. A source is like a container of findings that come from the same scanner, logger, monitor, etc.

To get more information about Source, see:

Example Usage - Scc Source Basic

resource "google_scc_source" "custom_source" {
  display_name = "My Source"
  organization = "123456789"
  description  = "My custom Cloud Security Command Center Finding Source"
}

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

Source can be imported using any of these accepted formats:

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

import {
  id = "organizations/{{organization}}/sources/{{name}}"
  to = google_scc_source.default
}

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

$ terraform import google_scc_source.default organizations/{{organization}}/sources/{{name}}
$ terraform import google_scc_source.default {{organization}}/{{name}}