Namespace Pulumi.Gcp.SecurityCenter
Classes
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:
- API documentation
- How-to Guides
- Official Documentation
Example Usage - Scc Source Basic
using Pulumi;
using Gcp = Pulumi.Gcp;
class MyStack : Stack
{
public MyStack()
{
var customSource = new Gcp.SecurityCenter.Source("customSource", new Gcp.SecurityCenter.SourceArgs
{
Description = "My custom Cloud Security Command Center Finding Source",
DisplayName = "My Source",
Organization = "123456789",
});
}
}