Project Custom Module Args
Represents an instance of a Security Health Analytics custom module, including its full module name, display name, enablement state, and last updated time. You can create a custom module at the organization, folder, or project level. Custom modules that you create at the organization or folder level are inherited by the child folders and projects. To get more information about ProjectCustomModule, see:
Example Usage
Scc Project Custom Module Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const example = new gcp.securitycenter.ProjectCustomModule("example", {
displayName: "basic_custom_module",
enablementState: "ENABLED",
customConfig: {
predicate: {
expression: "resource.rotationPeriod duration(\"2592000s\")",
},
resourceSelector: {
resourceTypes: ["cloudkms.googleapis.com/CryptoKey"],
},
description: "The rotation period of the identified cryptokey resource exceeds 30 days.",
recommendation: "Set the rotation period to at most 30 days.",
severity: "MEDIUM",
},
});
import pulumi
import pulumi_gcp as gcp
example = gcp.securitycenter.ProjectCustomModule("example",
display_name="basic_custom_module",
enablement_state="ENABLED",
custom_config={
"predicate": {
"expression": "resource.rotationPeriod duration(\"2592000s\")",
},
"resource_selector": {
"resource_types": ["cloudkms.googleapis.com/CryptoKey"],
},
"description": "The rotation period of the identified cryptokey resource exceeds 30 days.",
"recommendation": "Set the rotation period to at most 30 days.",
"severity": "MEDIUM",
})
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var example = new Gcp.SecurityCenter.ProjectCustomModule("example", new()
{
DisplayName = "basic_custom_module",
EnablementState = "ENABLED",
CustomConfig = new Gcp.SecurityCenter.Inputs.ProjectCustomModuleCustomConfigArgs
{
Predicate = new Gcp.SecurityCenter.Inputs.ProjectCustomModuleCustomConfigPredicateArgs
{
Expression = "resource.rotationPeriod duration(\"2592000s\")",
},
ResourceSelector = new Gcp.SecurityCenter.Inputs.ProjectCustomModuleCustomConfigResourceSelectorArgs
{
ResourceTypes = new[]
{
"cloudkms.googleapis.com/CryptoKey",
},
},
Description = "The rotation period of the identified cryptokey resource exceeds 30 days.",
Recommendation = "Set the rotation period to at most 30 days.",
Severity = "MEDIUM",
},
});
});
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.NewProjectCustomModule(ctx, "example", &securitycenter.ProjectCustomModuleArgs{
DisplayName: pulumi.String("basic_custom_module"),
EnablementState: pulumi.String("ENABLED"),
CustomConfig: &securitycenter.ProjectCustomModuleCustomConfigArgs{
Predicate: &securitycenter.ProjectCustomModuleCustomConfigPredicateArgs{
Expression: pulumi.String("resource.rotationPeriod duration(\"2592000s\")"),
},
ResourceSelector: &securitycenter.ProjectCustomModuleCustomConfigResourceSelectorArgs{
ResourceTypes: pulumi.StringArray{
pulumi.String("cloudkms.googleapis.com/CryptoKey"),
},
},
Description: pulumi.String("The rotation period of the identified cryptokey resource exceeds 30 days."),
Recommendation: pulumi.String("Set the rotation period to at most 30 days."),
Severity: pulumi.String("MEDIUM"),
},
})
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.ProjectCustomModule;
import com.pulumi.gcp.securitycenter.ProjectCustomModuleArgs;
import com.pulumi.gcp.securitycenter.inputs.ProjectCustomModuleCustomConfigArgs;
import com.pulumi.gcp.securitycenter.inputs.ProjectCustomModuleCustomConfigPredicateArgs;
import com.pulumi.gcp.securitycenter.inputs.ProjectCustomModuleCustomConfigResourceSelectorArgs;
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 example = new ProjectCustomModule("example", ProjectCustomModuleArgs.builder()
.displayName("basic_custom_module")
.enablementState("ENABLED")
.customConfig(ProjectCustomModuleCustomConfigArgs.builder()
.predicate(ProjectCustomModuleCustomConfigPredicateArgs.builder()
.expression("resource.rotationPeriod duration(\"2592000s\")")
.build())
.resourceSelector(ProjectCustomModuleCustomConfigResourceSelectorArgs.builder()
.resourceTypes("cloudkms.googleapis.com/CryptoKey")
.build())
.description("The rotation period of the identified cryptokey resource exceeds 30 days.")
.recommendation("Set the rotation period to at most 30 days.")
.severity("MEDIUM")
.build())
.build());
}
}
resources:
example:
type: gcp:securitycenter:ProjectCustomModule
properties:
displayName: basic_custom_module
enablementState: ENABLED
customConfig:
predicate:
expression: resource.rotationPeriod duration("2592000s")
resourceSelector:
resourceTypes:
- cloudkms.googleapis.com/CryptoKey
description: The rotation period of the identified cryptokey resource exceeds 30 days.
recommendation: Set the rotation period to at most 30 days.
severity: MEDIUM
Scc Project Custom Module Full
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const example = new gcp.securitycenter.ProjectCustomModule("example", {
displayName: "full_custom_module",
enablementState: "ENABLED",
customConfig: {
predicate: {
expression: "resource.rotationPeriod duration(\"2592000s\")",
title: "Purpose of the expression",
description: "description of the expression",
location: "location of the expression",
},
customOutput: {
properties: [{
name: "duration",
valueExpression: {
expression: "resource.rotationPeriod",
title: "Purpose of the expression",
description: "description of the expression",
location: "location of the expression",
},
}],
},
resourceSelector: {
resourceTypes: ["cloudkms.googleapis.com/CryptoKey"],
},
severity: "LOW",
description: "Description of the custom module",
recommendation: "Steps to resolve violation",
},
});
import pulumi
import pulumi_gcp as gcp
example = gcp.securitycenter.ProjectCustomModule("example",
display_name="full_custom_module",
enablement_state="ENABLED",
custom_config={
"predicate": {
"expression": "resource.rotationPeriod duration(\"2592000s\")",
"title": "Purpose of the expression",
"description": "description of the expression",
"location": "location of the expression",
},
"custom_output": {
"properties": [{
"name": "duration",
"value_expression": {
"expression": "resource.rotationPeriod",
"title": "Purpose of the expression",
"description": "description of the expression",
"location": "location of the expression",
},
}],
},
"resource_selector": {
"resource_types": ["cloudkms.googleapis.com/CryptoKey"],
},
"severity": "LOW",
"description": "Description of the custom module",
"recommendation": "Steps to resolve violation",
})
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var example = new Gcp.SecurityCenter.ProjectCustomModule("example", new()
{
DisplayName = "full_custom_module",
EnablementState = "ENABLED",
CustomConfig = new Gcp.SecurityCenter.Inputs.ProjectCustomModuleCustomConfigArgs
{
Predicate = new Gcp.SecurityCenter.Inputs.ProjectCustomModuleCustomConfigPredicateArgs
{
Expression = "resource.rotationPeriod duration(\"2592000s\")",
Title = "Purpose of the expression",
Description = "description of the expression",
Location = "location of the expression",
},
CustomOutput = new Gcp.SecurityCenter.Inputs.ProjectCustomModuleCustomConfigCustomOutputArgs
{
Properties = new[]
{
new Gcp.SecurityCenter.Inputs.ProjectCustomModuleCustomConfigCustomOutputPropertyArgs
{
Name = "duration",
ValueExpression = new Gcp.SecurityCenter.Inputs.ProjectCustomModuleCustomConfigCustomOutputPropertyValueExpressionArgs
{
Expression = "resource.rotationPeriod",
Title = "Purpose of the expression",
Description = "description of the expression",
Location = "location of the expression",
},
},
},
},
ResourceSelector = new Gcp.SecurityCenter.Inputs.ProjectCustomModuleCustomConfigResourceSelectorArgs
{
ResourceTypes = new[]
{
"cloudkms.googleapis.com/CryptoKey",
},
},
Severity = "LOW",
Description = "Description of the custom module",
Recommendation = "Steps to resolve violation",
},
});
});
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.NewProjectCustomModule(ctx, "example", &securitycenter.ProjectCustomModuleArgs{
DisplayName: pulumi.String("full_custom_module"),
EnablementState: pulumi.String("ENABLED"),
CustomConfig: &securitycenter.ProjectCustomModuleCustomConfigArgs{
Predicate: &securitycenter.ProjectCustomModuleCustomConfigPredicateArgs{
Expression: pulumi.String("resource.rotationPeriod duration(\"2592000s\")"),
Title: pulumi.String("Purpose of the expression"),
Description: pulumi.String("description of the expression"),
Location: pulumi.String("location of the expression"),
},
CustomOutput: securitycenter.ProjectCustomModuleCustomConfigCustomOutputArgs{
Properties: securitycenter.ProjectCustomModuleCustomConfigCustomOutputPropertyArray{
&securitycenter.ProjectCustomModuleCustomConfigCustomOutputPropertyArgs{
Name: pulumi.String("duration"),
ValueExpression: &securitycenter.ProjectCustomModuleCustomConfigCustomOutputPropertyValueExpressionArgs{
Expression: pulumi.String("resource.rotationPeriod"),
Title: pulumi.String("Purpose of the expression"),
Description: pulumi.String("description of the expression"),
Location: pulumi.String("location of the expression"),
},
},
},
},
ResourceSelector: &securitycenter.ProjectCustomModuleCustomConfigResourceSelectorArgs{
ResourceTypes: pulumi.StringArray{
pulumi.String("cloudkms.googleapis.com/CryptoKey"),
},
},
Severity: pulumi.String("LOW"),
Description: pulumi.String("Description of the custom module"),
Recommendation: pulumi.String("Steps to resolve violation"),
},
})
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.ProjectCustomModule;
import com.pulumi.gcp.securitycenter.ProjectCustomModuleArgs;
import com.pulumi.gcp.securitycenter.inputs.ProjectCustomModuleCustomConfigArgs;
import com.pulumi.gcp.securitycenter.inputs.ProjectCustomModuleCustomConfigPredicateArgs;
import com.pulumi.gcp.securitycenter.inputs.ProjectCustomModuleCustomConfigCustomOutputArgs;
import com.pulumi.gcp.securitycenter.inputs.ProjectCustomModuleCustomConfigResourceSelectorArgs;
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 example = new ProjectCustomModule("example", ProjectCustomModuleArgs.builder()
.displayName("full_custom_module")
.enablementState("ENABLED")
.customConfig(ProjectCustomModuleCustomConfigArgs.builder()
.predicate(ProjectCustomModuleCustomConfigPredicateArgs.builder()
.expression("resource.rotationPeriod duration(\"2592000s\")")
.title("Purpose of the expression")
.description("description of the expression")
.location("location of the expression")
.build())
.customOutput(ProjectCustomModuleCustomConfigCustomOutputArgs.builder()
.properties(ProjectCustomModuleCustomConfigCustomOutputPropertyArgs.builder()
.name("duration")
.valueExpression(ProjectCustomModuleCustomConfigCustomOutputPropertyValueExpressionArgs.builder()
.expression("resource.rotationPeriod")
.title("Purpose of the expression")
.description("description of the expression")
.location("location of the expression")
.build())
.build())
.build())
.resourceSelector(ProjectCustomModuleCustomConfigResourceSelectorArgs.builder()
.resourceTypes("cloudkms.googleapis.com/CryptoKey")
.build())
.severity("LOW")
.description("Description of the custom module")
.recommendation("Steps to resolve violation")
.build())
.build());
}
}
resources:
example:
type: gcp:securitycenter:ProjectCustomModule
properties:
displayName: full_custom_module
enablementState: ENABLED
customConfig:
predicate:
expression: resource.rotationPeriod duration("2592000s")
title: Purpose of the expression
description: description of the expression
location: location of the expression
customOutput:
properties:
- name: duration
valueExpression:
expression: resource.rotationPeriod
title: Purpose of the expression
description: description of the expression
location: location of the expression
resourceSelector:
resourceTypes:
- cloudkms.googleapis.com/CryptoKey
severity: LOW
description: Description of the custom module
recommendation: Steps to resolve violation
Import
ProjectCustomModule can be imported using any of these accepted formats:
projects/{{project}}/securityHealthAnalyticsSettings/customModules/{{name}}
{{project}}/{{name}}
{{name}}
When using thepulumi import
command, ProjectCustomModule can be imported using one of the formats above. For example:
$ pulumi import gcp:securitycenter/projectCustomModule:ProjectCustomModule default projects/{{project}}/securityHealthAnalyticsSettings/customModules/{{name}}
$ pulumi import gcp:securitycenter/projectCustomModule:ProjectCustomModule default {{project}}/{{name}}
$ pulumi import gcp:securitycenter/projectCustomModule:ProjectCustomModule default {{name}}
Constructors
Properties
The user specified custom configuration for the module. Structure is documented below.
The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.
The enablement state of the custom module. Possible values are: ENABLED
, DISABLED
.