gcp.securitycenter.OrganizationCustomModule
Explore with Pulumi AI
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 OrganizationCustomModule, see:
Example Usage
Scc Organization Custom Module Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const example = new gcp.securitycenter.OrganizationCustomModule("example", {
organization: "123456789",
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.OrganizationCustomModule("example",
organization="123456789",
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",
})
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.NewOrganizationCustomModule(ctx, "example", &securitycenter.OrganizationCustomModuleArgs{
Organization: pulumi.String("123456789"),
DisplayName: pulumi.String("basic_custom_module"),
EnablementState: pulumi.String("ENABLED"),
CustomConfig: &securitycenter.OrganizationCustomModuleCustomConfigArgs{
Predicate: &securitycenter.OrganizationCustomModuleCustomConfigPredicateArgs{
Expression: pulumi.String("resource.rotationPeriod > duration(\"2592000s\")"),
},
ResourceSelector: &securitycenter.OrganizationCustomModuleCustomConfigResourceSelectorArgs{
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
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var example = new Gcp.SecurityCenter.OrganizationCustomModule("example", new()
{
Organization = "123456789",
DisplayName = "basic_custom_module",
EnablementState = "ENABLED",
CustomConfig = new Gcp.SecurityCenter.Inputs.OrganizationCustomModuleCustomConfigArgs
{
Predicate = new Gcp.SecurityCenter.Inputs.OrganizationCustomModuleCustomConfigPredicateArgs
{
Expression = "resource.rotationPeriod > duration(\"2592000s\")",
},
ResourceSelector = new Gcp.SecurityCenter.Inputs.OrganizationCustomModuleCustomConfigResourceSelectorArgs
{
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 generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.securitycenter.OrganizationCustomModule;
import com.pulumi.gcp.securitycenter.OrganizationCustomModuleArgs;
import com.pulumi.gcp.securitycenter.inputs.OrganizationCustomModuleCustomConfigArgs;
import com.pulumi.gcp.securitycenter.inputs.OrganizationCustomModuleCustomConfigPredicateArgs;
import com.pulumi.gcp.securitycenter.inputs.OrganizationCustomModuleCustomConfigResourceSelectorArgs;
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 OrganizationCustomModule("example", OrganizationCustomModuleArgs.builder()
.organization("123456789")
.displayName("basic_custom_module")
.enablementState("ENABLED")
.customConfig(OrganizationCustomModuleCustomConfigArgs.builder()
.predicate(OrganizationCustomModuleCustomConfigPredicateArgs.builder()
.expression("resource.rotationPeriod > duration(\"2592000s\")")
.build())
.resourceSelector(OrganizationCustomModuleCustomConfigResourceSelectorArgs.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:OrganizationCustomModule
properties:
organization: '123456789'
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 Organization Custom Module Full
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const example = new gcp.securitycenter.OrganizationCustomModule("example", {
organization: "123456789",
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.OrganizationCustomModule("example",
organization="123456789",
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",
})
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.NewOrganizationCustomModule(ctx, "example", &securitycenter.OrganizationCustomModuleArgs{
Organization: pulumi.String("123456789"),
DisplayName: pulumi.String("full_custom_module"),
EnablementState: pulumi.String("ENABLED"),
CustomConfig: &securitycenter.OrganizationCustomModuleCustomConfigArgs{
Predicate: &securitycenter.OrganizationCustomModuleCustomConfigPredicateArgs{
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.OrganizationCustomModuleCustomConfigCustomOutputArgs{
Properties: securitycenter.OrganizationCustomModuleCustomConfigCustomOutputPropertyArray{
&securitycenter.OrganizationCustomModuleCustomConfigCustomOutputPropertyArgs{
Name: pulumi.String("duration"),
ValueExpression: &securitycenter.OrganizationCustomModuleCustomConfigCustomOutputPropertyValueExpressionArgs{
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.OrganizationCustomModuleCustomConfigResourceSelectorArgs{
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
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var example = new Gcp.SecurityCenter.OrganizationCustomModule("example", new()
{
Organization = "123456789",
DisplayName = "full_custom_module",
EnablementState = "ENABLED",
CustomConfig = new Gcp.SecurityCenter.Inputs.OrganizationCustomModuleCustomConfigArgs
{
Predicate = new Gcp.SecurityCenter.Inputs.OrganizationCustomModuleCustomConfigPredicateArgs
{
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.OrganizationCustomModuleCustomConfigCustomOutputArgs
{
Properties = new[]
{
new Gcp.SecurityCenter.Inputs.OrganizationCustomModuleCustomConfigCustomOutputPropertyArgs
{
Name = "duration",
ValueExpression = new Gcp.SecurityCenter.Inputs.OrganizationCustomModuleCustomConfigCustomOutputPropertyValueExpressionArgs
{
Expression = "resource.rotationPeriod",
Title = "Purpose of the expression",
Description = "description of the expression",
Location = "location of the expression",
},
},
},
},
ResourceSelector = new Gcp.SecurityCenter.Inputs.OrganizationCustomModuleCustomConfigResourceSelectorArgs
{
ResourceTypes = new[]
{
"cloudkms.googleapis.com/CryptoKey",
},
},
Severity = "LOW",
Description = "Description of the custom module",
Recommendation = "Steps to resolve violation",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.securitycenter.OrganizationCustomModule;
import com.pulumi.gcp.securitycenter.OrganizationCustomModuleArgs;
import com.pulumi.gcp.securitycenter.inputs.OrganizationCustomModuleCustomConfigArgs;
import com.pulumi.gcp.securitycenter.inputs.OrganizationCustomModuleCustomConfigPredicateArgs;
import com.pulumi.gcp.securitycenter.inputs.OrganizationCustomModuleCustomConfigCustomOutputArgs;
import com.pulumi.gcp.securitycenter.inputs.OrganizationCustomModuleCustomConfigResourceSelectorArgs;
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 OrganizationCustomModule("example", OrganizationCustomModuleArgs.builder()
.organization("123456789")
.displayName("full_custom_module")
.enablementState("ENABLED")
.customConfig(OrganizationCustomModuleCustomConfigArgs.builder()
.predicate(OrganizationCustomModuleCustomConfigPredicateArgs.builder()
.expression("resource.rotationPeriod > duration(\"2592000s\")")
.title("Purpose of the expression")
.description("description of the expression")
.location("location of the expression")
.build())
.customOutput(OrganizationCustomModuleCustomConfigCustomOutputArgs.builder()
.properties(OrganizationCustomModuleCustomConfigCustomOutputPropertyArgs.builder()
.name("duration")
.valueExpression(OrganizationCustomModuleCustomConfigCustomOutputPropertyValueExpressionArgs.builder()
.expression("resource.rotationPeriod")
.title("Purpose of the expression")
.description("description of the expression")
.location("location of the expression")
.build())
.build())
.build())
.resourceSelector(OrganizationCustomModuleCustomConfigResourceSelectorArgs.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:OrganizationCustomModule
properties:
organization: '123456789'
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
Create OrganizationCustomModule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OrganizationCustomModule(name: string, args: OrganizationCustomModuleArgs, opts?: CustomResourceOptions);
@overload
def OrganizationCustomModule(resource_name: str,
args: OrganizationCustomModuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OrganizationCustomModule(resource_name: str,
opts: Optional[ResourceOptions] = None,
custom_config: Optional[OrganizationCustomModuleCustomConfigArgs] = None,
display_name: Optional[str] = None,
enablement_state: Optional[str] = None,
organization: Optional[str] = None)
func NewOrganizationCustomModule(ctx *Context, name string, args OrganizationCustomModuleArgs, opts ...ResourceOption) (*OrganizationCustomModule, error)
public OrganizationCustomModule(string name, OrganizationCustomModuleArgs args, CustomResourceOptions? opts = null)
public OrganizationCustomModule(String name, OrganizationCustomModuleArgs args)
public OrganizationCustomModule(String name, OrganizationCustomModuleArgs args, CustomResourceOptions options)
type: gcp:securitycenter:OrganizationCustomModule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args OrganizationCustomModuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args OrganizationCustomModuleArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args OrganizationCustomModuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OrganizationCustomModuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OrganizationCustomModuleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var organizationCustomModuleResource = new Gcp.SecurityCenter.OrganizationCustomModule("organizationCustomModuleResource", new()
{
CustomConfig = new Gcp.SecurityCenter.Inputs.OrganizationCustomModuleCustomConfigArgs
{
Predicate = new Gcp.SecurityCenter.Inputs.OrganizationCustomModuleCustomConfigPredicateArgs
{
Expression = "string",
Description = "string",
Location = "string",
Title = "string",
},
Recommendation = "string",
ResourceSelector = new Gcp.SecurityCenter.Inputs.OrganizationCustomModuleCustomConfigResourceSelectorArgs
{
ResourceTypes = new[]
{
"string",
},
},
Severity = "string",
CustomOutput = new Gcp.SecurityCenter.Inputs.OrganizationCustomModuleCustomConfigCustomOutputArgs
{
Properties = new[]
{
new Gcp.SecurityCenter.Inputs.OrganizationCustomModuleCustomConfigCustomOutputPropertyArgs
{
Name = "string",
ValueExpression = new Gcp.SecurityCenter.Inputs.OrganizationCustomModuleCustomConfigCustomOutputPropertyValueExpressionArgs
{
Expression = "string",
Description = "string",
Location = "string",
Title = "string",
},
},
},
},
Description = "string",
},
DisplayName = "string",
EnablementState = "string",
Organization = "string",
});
example, err := securitycenter.NewOrganizationCustomModule(ctx, "organizationCustomModuleResource", &securitycenter.OrganizationCustomModuleArgs{
CustomConfig: &securitycenter.OrganizationCustomModuleCustomConfigArgs{
Predicate: &securitycenter.OrganizationCustomModuleCustomConfigPredicateArgs{
Expression: pulumi.String("string"),
Description: pulumi.String("string"),
Location: pulumi.String("string"),
Title: pulumi.String("string"),
},
Recommendation: pulumi.String("string"),
ResourceSelector: &securitycenter.OrganizationCustomModuleCustomConfigResourceSelectorArgs{
ResourceTypes: pulumi.StringArray{
pulumi.String("string"),
},
},
Severity: pulumi.String("string"),
CustomOutput: securitycenter.OrganizationCustomModuleCustomConfigCustomOutputArgs{
Properties: securitycenter.OrganizationCustomModuleCustomConfigCustomOutputPropertyArray{
&securitycenter.OrganizationCustomModuleCustomConfigCustomOutputPropertyArgs{
Name: pulumi.String("string"),
ValueExpression: &securitycenter.OrganizationCustomModuleCustomConfigCustomOutputPropertyValueExpressionArgs{
Expression: pulumi.String("string"),
Description: pulumi.String("string"),
Location: pulumi.String("string"),
Title: pulumi.String("string"),
},
},
},
},
Description: pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
EnablementState: pulumi.String("string"),
Organization: pulumi.String("string"),
})
var organizationCustomModuleResource = new OrganizationCustomModule("organizationCustomModuleResource", OrganizationCustomModuleArgs.builder()
.customConfig(OrganizationCustomModuleCustomConfigArgs.builder()
.predicate(OrganizationCustomModuleCustomConfigPredicateArgs.builder()
.expression("string")
.description("string")
.location("string")
.title("string")
.build())
.recommendation("string")
.resourceSelector(OrganizationCustomModuleCustomConfigResourceSelectorArgs.builder()
.resourceTypes("string")
.build())
.severity("string")
.customOutput(OrganizationCustomModuleCustomConfigCustomOutputArgs.builder()
.properties(OrganizationCustomModuleCustomConfigCustomOutputPropertyArgs.builder()
.name("string")
.valueExpression(OrganizationCustomModuleCustomConfigCustomOutputPropertyValueExpressionArgs.builder()
.expression("string")
.description("string")
.location("string")
.title("string")
.build())
.build())
.build())
.description("string")
.build())
.displayName("string")
.enablementState("string")
.organization("string")
.build());
organization_custom_module_resource = gcp.securitycenter.OrganizationCustomModule("organizationCustomModuleResource",
custom_config={
"predicate": {
"expression": "string",
"description": "string",
"location": "string",
"title": "string",
},
"recommendation": "string",
"resourceSelector": {
"resourceTypes": ["string"],
},
"severity": "string",
"customOutput": {
"properties": [{
"name": "string",
"valueExpression": {
"expression": "string",
"description": "string",
"location": "string",
"title": "string",
},
}],
},
"description": "string",
},
display_name="string",
enablement_state="string",
organization="string")
const organizationCustomModuleResource = new gcp.securitycenter.OrganizationCustomModule("organizationCustomModuleResource", {
customConfig: {
predicate: {
expression: "string",
description: "string",
location: "string",
title: "string",
},
recommendation: "string",
resourceSelector: {
resourceTypes: ["string"],
},
severity: "string",
customOutput: {
properties: [{
name: "string",
valueExpression: {
expression: "string",
description: "string",
location: "string",
title: "string",
},
}],
},
description: "string",
},
displayName: "string",
enablementState: "string",
organization: "string",
});
type: gcp:securitycenter:OrganizationCustomModule
properties:
customConfig:
customOutput:
properties:
- name: string
valueExpression:
description: string
expression: string
location: string
title: string
description: string
predicate:
description: string
expression: string
location: string
title: string
recommendation: string
resourceSelector:
resourceTypes:
- string
severity: string
displayName: string
enablementState: string
organization: string
OrganizationCustomModule Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The OrganizationCustomModule resource accepts the following input properties:
- Custom
Config OrganizationCustom Module Custom Config - The user specified custom configuration for the module. Structure is documented below.
- Display
Name string - 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.
- Enablement
State string - The enablement state of the custom module.
Possible values are:
ENABLED
,DISABLED
. - Organization string
- Numerical ID of the parent organization.
- Custom
Config OrganizationCustom Module Custom Config Args - The user specified custom configuration for the module. Structure is documented below.
- Display
Name string - 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.
- Enablement
State string - The enablement state of the custom module.
Possible values are:
ENABLED
,DISABLED
. - Organization string
- Numerical ID of the parent organization.
- custom
Config OrganizationCustom Module Custom Config - The user specified custom configuration for the module. Structure is documented below.
- display
Name String - 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.
- enablement
State String - The enablement state of the custom module.
Possible values are:
ENABLED
,DISABLED
. - organization String
- Numerical ID of the parent organization.
- custom
Config OrganizationCustom Module Custom Config - The user specified custom configuration for the module. Structure is documented below.
- display
Name string - 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.
- enablement
State string - The enablement state of the custom module.
Possible values are:
ENABLED
,DISABLED
. - organization string
- Numerical ID of the parent organization.
- custom_
config OrganizationCustom Module Custom Config Args - The user specified custom configuration for the module. Structure is documented below.
- display_
name str - 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.
- enablement_
state str - The enablement state of the custom module.
Possible values are:
ENABLED
,DISABLED
. - organization str
- Numerical ID of the parent organization.
- custom
Config Property Map - The user specified custom configuration for the module. Structure is documented below.
- display
Name String - 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.
- enablement
State String - The enablement state of the custom module.
Possible values are:
ENABLED
,DISABLED
. - organization String
- Numerical ID of the parent organization.
Outputs
All input properties are implicitly available as output properties. Additionally, the OrganizationCustomModule resource produces the following output properties:
- Ancestor
Module string - If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, ancestor_module specifies the organization or folder from which the custom module is inherited.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Editor string - The editor that last updated the custom module.
- Name string
- The resource name of the custom module. Its format is "organizations/{org_id}/securityHealthAnalyticsSettings/customModules/{customModule}". The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
- Update
Time string - The time at which the custom module was last updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- Ancestor
Module string - If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, ancestor_module specifies the organization or folder from which the custom module is inherited.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Editor string - The editor that last updated the custom module.
- Name string
- The resource name of the custom module. Its format is "organizations/{org_id}/securityHealthAnalyticsSettings/customModules/{customModule}". The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
- Update
Time string - The time at which the custom module was last updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- ancestor
Module String - If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, ancestor_module specifies the organization or folder from which the custom module is inherited.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Editor String - The editor that last updated the custom module.
- name String
- The resource name of the custom module. Its format is "organizations/{org_id}/securityHealthAnalyticsSettings/customModules/{customModule}". The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
- update
Time String - The time at which the custom module was last updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- ancestor
Module string - If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, ancestor_module specifies the organization or folder from which the custom module is inherited.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Editor string - The editor that last updated the custom module.
- name string
- The resource name of the custom module. Its format is "organizations/{org_id}/securityHealthAnalyticsSettings/customModules/{customModule}". The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
- update
Time string - The time at which the custom module was last updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- ancestor_
module str - If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, ancestor_module specifies the organization or folder from which the custom module is inherited.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
editor str - The editor that last updated the custom module.
- name str
- The resource name of the custom module. Its format is "organizations/{org_id}/securityHealthAnalyticsSettings/customModules/{customModule}". The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
- update_
time str - The time at which the custom module was last updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- ancestor
Module String - If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, ancestor_module specifies the organization or folder from which the custom module is inherited.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Editor String - The editor that last updated the custom module.
- name String
- The resource name of the custom module. Its format is "organizations/{org_id}/securityHealthAnalyticsSettings/customModules/{customModule}". The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
- update
Time String - The time at which the custom module was last updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
Look up Existing OrganizationCustomModule Resource
Get an existing OrganizationCustomModule resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: OrganizationCustomModuleState, opts?: CustomResourceOptions): OrganizationCustomModule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ancestor_module: Optional[str] = None,
custom_config: Optional[OrganizationCustomModuleCustomConfigArgs] = None,
display_name: Optional[str] = None,
enablement_state: Optional[str] = None,
last_editor: Optional[str] = None,
name: Optional[str] = None,
organization: Optional[str] = None,
update_time: Optional[str] = None) -> OrganizationCustomModule
func GetOrganizationCustomModule(ctx *Context, name string, id IDInput, state *OrganizationCustomModuleState, opts ...ResourceOption) (*OrganizationCustomModule, error)
public static OrganizationCustomModule Get(string name, Input<string> id, OrganizationCustomModuleState? state, CustomResourceOptions? opts = null)
public static OrganizationCustomModule get(String name, Output<String> id, OrganizationCustomModuleState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Ancestor
Module string - If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, ancestor_module specifies the organization or folder from which the custom module is inherited.
- Custom
Config OrganizationCustom Module Custom Config - The user specified custom configuration for the module. Structure is documented below.
- Display
Name string - 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.
- Enablement
State string - The enablement state of the custom module.
Possible values are:
ENABLED
,DISABLED
. - Last
Editor string - The editor that last updated the custom module.
- Name string
- The resource name of the custom module. Its format is "organizations/{org_id}/securityHealthAnalyticsSettings/customModules/{customModule}". The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
- Organization string
- Numerical ID of the parent organization.
- Update
Time string - The time at which the custom module was last updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- Ancestor
Module string - If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, ancestor_module specifies the organization or folder from which the custom module is inherited.
- Custom
Config OrganizationCustom Module Custom Config Args - The user specified custom configuration for the module. Structure is documented below.
- Display
Name string - 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.
- Enablement
State string - The enablement state of the custom module.
Possible values are:
ENABLED
,DISABLED
. - Last
Editor string - The editor that last updated the custom module.
- Name string
- The resource name of the custom module. Its format is "organizations/{org_id}/securityHealthAnalyticsSettings/customModules/{customModule}". The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
- Organization string
- Numerical ID of the parent organization.
- Update
Time string - The time at which the custom module was last updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- ancestor
Module String - If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, ancestor_module specifies the organization or folder from which the custom module is inherited.
- custom
Config OrganizationCustom Module Custom Config - The user specified custom configuration for the module. Structure is documented below.
- display
Name String - 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.
- enablement
State String - The enablement state of the custom module.
Possible values are:
ENABLED
,DISABLED
. - last
Editor String - The editor that last updated the custom module.
- name String
- The resource name of the custom module. Its format is "organizations/{org_id}/securityHealthAnalyticsSettings/customModules/{customModule}". The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
- organization String
- Numerical ID of the parent organization.
- update
Time String - The time at which the custom module was last updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- ancestor
Module string - If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, ancestor_module specifies the organization or folder from which the custom module is inherited.
- custom
Config OrganizationCustom Module Custom Config - The user specified custom configuration for the module. Structure is documented below.
- display
Name string - 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.
- enablement
State string - The enablement state of the custom module.
Possible values are:
ENABLED
,DISABLED
. - last
Editor string - The editor that last updated the custom module.
- name string
- The resource name of the custom module. Its format is "organizations/{org_id}/securityHealthAnalyticsSettings/customModules/{customModule}". The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
- organization string
- Numerical ID of the parent organization.
- update
Time string - The time at which the custom module was last updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- ancestor_
module str - If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, ancestor_module specifies the organization or folder from which the custom module is inherited.
- custom_
config OrganizationCustom Module Custom Config Args - The user specified custom configuration for the module. Structure is documented below.
- display_
name str - 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.
- enablement_
state str - The enablement state of the custom module.
Possible values are:
ENABLED
,DISABLED
. - last_
editor str - The editor that last updated the custom module.
- name str
- The resource name of the custom module. Its format is "organizations/{org_id}/securityHealthAnalyticsSettings/customModules/{customModule}". The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
- organization str
- Numerical ID of the parent organization.
- update_
time str - The time at which the custom module was last updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- ancestor
Module String - If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, ancestor_module specifies the organization or folder from which the custom module is inherited.
- custom
Config Property Map - The user specified custom configuration for the module. Structure is documented below.
- display
Name String - 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.
- enablement
State String - The enablement state of the custom module.
Possible values are:
ENABLED
,DISABLED
. - last
Editor String - The editor that last updated the custom module.
- name String
- The resource name of the custom module. Its format is "organizations/{org_id}/securityHealthAnalyticsSettings/customModules/{customModule}". The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
- organization String
- Numerical ID of the parent organization.
- update
Time String - The time at which the custom module was last updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
Supporting Types
OrganizationCustomModuleCustomConfig, OrganizationCustomModuleCustomConfigArgs
- Predicate
Organization
Custom Module Custom Config Predicate - The CEL expression to evaluate to produce findings. When the expression evaluates to true against a resource, a finding is generated. Structure is documented below.
- Recommendation string
- An explanation of the recommended steps that security teams can take to resolve the detected issue. This explanation is returned with each finding generated by this module in the nextSteps property of the finding JSON.
- Resource
Selector OrganizationCustom Module Custom Config Resource Selector - The resource types that the custom module operates on. Each custom module can specify up to 5 resource types. Structure is documented below.
- Severity string
- The severity to assign to findings generated by the module.
Possible values are:
CRITICAL
,HIGH
,MEDIUM
,LOW
. - Custom
Output OrganizationCustom Module Custom Config Custom Output - Custom output properties. Structure is documented below.
- Description string
- Text that describes the vulnerability or misconfiguration that the custom module detects. This explanation is returned with each finding instance to help investigators understand the detected issue. The text must be enclosed in quotation marks.
- Predicate
Organization
Custom Module Custom Config Predicate - The CEL expression to evaluate to produce findings. When the expression evaluates to true against a resource, a finding is generated. Structure is documented below.
- Recommendation string
- An explanation of the recommended steps that security teams can take to resolve the detected issue. This explanation is returned with each finding generated by this module in the nextSteps property of the finding JSON.
- Resource
Selector OrganizationCustom Module Custom Config Resource Selector - The resource types that the custom module operates on. Each custom module can specify up to 5 resource types. Structure is documented below.
- Severity string
- The severity to assign to findings generated by the module.
Possible values are:
CRITICAL
,HIGH
,MEDIUM
,LOW
. - Custom
Output OrganizationCustom Module Custom Config Custom Output - Custom output properties. Structure is documented below.
- Description string
- Text that describes the vulnerability or misconfiguration that the custom module detects. This explanation is returned with each finding instance to help investigators understand the detected issue. The text must be enclosed in quotation marks.
- predicate
Organization
Custom Module Custom Config Predicate - The CEL expression to evaluate to produce findings. When the expression evaluates to true against a resource, a finding is generated. Structure is documented below.
- recommendation String
- An explanation of the recommended steps that security teams can take to resolve the detected issue. This explanation is returned with each finding generated by this module in the nextSteps property of the finding JSON.
- resource
Selector OrganizationCustom Module Custom Config Resource Selector - The resource types that the custom module operates on. Each custom module can specify up to 5 resource types. Structure is documented below.
- severity String
- The severity to assign to findings generated by the module.
Possible values are:
CRITICAL
,HIGH
,MEDIUM
,LOW
. - custom
Output OrganizationCustom Module Custom Config Custom Output - Custom output properties. Structure is documented below.
- description String
- Text that describes the vulnerability or misconfiguration that the custom module detects. This explanation is returned with each finding instance to help investigators understand the detected issue. The text must be enclosed in quotation marks.
- predicate
Organization
Custom Module Custom Config Predicate - The CEL expression to evaluate to produce findings. When the expression evaluates to true against a resource, a finding is generated. Structure is documented below.
- recommendation string
- An explanation of the recommended steps that security teams can take to resolve the detected issue. This explanation is returned with each finding generated by this module in the nextSteps property of the finding JSON.
- resource
Selector OrganizationCustom Module Custom Config Resource Selector - The resource types that the custom module operates on. Each custom module can specify up to 5 resource types. Structure is documented below.
- severity string
- The severity to assign to findings generated by the module.
Possible values are:
CRITICAL
,HIGH
,MEDIUM
,LOW
. - custom
Output OrganizationCustom Module Custom Config Custom Output - Custom output properties. Structure is documented below.
- description string
- Text that describes the vulnerability or misconfiguration that the custom module detects. This explanation is returned with each finding instance to help investigators understand the detected issue. The text must be enclosed in quotation marks.
- predicate
Organization
Custom Module Custom Config Predicate - The CEL expression to evaluate to produce findings. When the expression evaluates to true against a resource, a finding is generated. Structure is documented below.
- recommendation str
- An explanation of the recommended steps that security teams can take to resolve the detected issue. This explanation is returned with each finding generated by this module in the nextSteps property of the finding JSON.
- resource_
selector OrganizationCustom Module Custom Config Resource Selector - The resource types that the custom module operates on. Each custom module can specify up to 5 resource types. Structure is documented below.
- severity str
- The severity to assign to findings generated by the module.
Possible values are:
CRITICAL
,HIGH
,MEDIUM
,LOW
. - custom_
output OrganizationCustom Module Custom Config Custom Output - Custom output properties. Structure is documented below.
- description str
- Text that describes the vulnerability or misconfiguration that the custom module detects. This explanation is returned with each finding instance to help investigators understand the detected issue. The text must be enclosed in quotation marks.
- predicate Property Map
- The CEL expression to evaluate to produce findings. When the expression evaluates to true against a resource, a finding is generated. Structure is documented below.
- recommendation String
- An explanation of the recommended steps that security teams can take to resolve the detected issue. This explanation is returned with each finding generated by this module in the nextSteps property of the finding JSON.
- resource
Selector Property Map - The resource types that the custom module operates on. Each custom module can specify up to 5 resource types. Structure is documented below.
- severity String
- The severity to assign to findings generated by the module.
Possible values are:
CRITICAL
,HIGH
,MEDIUM
,LOW
. - custom
Output Property Map - Custom output properties. Structure is documented below.
- description String
- Text that describes the vulnerability or misconfiguration that the custom module detects. This explanation is returned with each finding instance to help investigators understand the detected issue. The text must be enclosed in quotation marks.
OrganizationCustomModuleCustomConfigCustomOutput, OrganizationCustomModuleCustomConfigCustomOutputArgs
- Properties
List<Organization
Custom Module Custom Config Custom Output Property> - A list of custom output properties to add to the finding. Structure is documented below.
- Properties
[]Organization
Custom Module Custom Config Custom Output Property - A list of custom output properties to add to the finding. Structure is documented below.
- properties
List<Organization
Custom Module Custom Config Custom Output Property> - A list of custom output properties to add to the finding. Structure is documented below.
- properties
Organization
Custom Module Custom Config Custom Output Property[] - A list of custom output properties to add to the finding. Structure is documented below.
- properties
Sequence[Organization
Custom Module Custom Config Custom Output Property] - A list of custom output properties to add to the finding. Structure is documented below.
- properties List<Property Map>
- A list of custom output properties to add to the finding. Structure is documented below.
OrganizationCustomModuleCustomConfigCustomOutputProperty, OrganizationCustomModuleCustomConfigCustomOutputPropertyArgs
- Name string
- Name of the property for the custom output.
- Value
Expression OrganizationCustom Module Custom Config Custom Output Property Value Expression - The CEL expression for the custom output. A resource property can be specified to return the value of the property or a text string enclosed in quotation marks. Structure is documented below.
- Name string
- Name of the property for the custom output.
- Value
Expression OrganizationCustom Module Custom Config Custom Output Property Value Expression - The CEL expression for the custom output. A resource property can be specified to return the value of the property or a text string enclosed in quotation marks. Structure is documented below.
- name String
- Name of the property for the custom output.
- value
Expression OrganizationCustom Module Custom Config Custom Output Property Value Expression - The CEL expression for the custom output. A resource property can be specified to return the value of the property or a text string enclosed in quotation marks. Structure is documented below.
- name string
- Name of the property for the custom output.
- value
Expression OrganizationCustom Module Custom Config Custom Output Property Value Expression - The CEL expression for the custom output. A resource property can be specified to return the value of the property or a text string enclosed in quotation marks. Structure is documented below.
- name str
- Name of the property for the custom output.
- value_
expression OrganizationCustom Module Custom Config Custom Output Property Value Expression - The CEL expression for the custom output. A resource property can be specified to return the value of the property or a text string enclosed in quotation marks. Structure is documented below.
- name String
- Name of the property for the custom output.
- value
Expression Property Map - The CEL expression for the custom output. A resource property can be specified to return the value of the property or a text string enclosed in quotation marks. Structure is documented below.
OrganizationCustomModuleCustomConfigCustomOutputPropertyValueExpression, OrganizationCustomModuleCustomConfigCustomOutputPropertyValueExpressionArgs
- Expression string
- Textual representation of an expression in Common Expression Language syntax.
- Description string
- Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
- Location string
- String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
- Title string
- Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
- Expression string
- Textual representation of an expression in Common Expression Language syntax.
- Description string
- Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
- Location string
- String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
- Title string
- Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
- expression String
- Textual representation of an expression in Common Expression Language syntax.
- description String
- Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
- location String
- String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
- title String
- Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
- expression string
- Textual representation of an expression in Common Expression Language syntax.
- description string
- Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
- location string
- String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
- title string
- Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
- expression str
- Textual representation of an expression in Common Expression Language syntax.
- description str
- Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
- location str
- String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
- title str
- Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
- expression String
- Textual representation of an expression in Common Expression Language syntax.
- description String
- Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
- location String
- String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
- title String
- Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
OrganizationCustomModuleCustomConfigPredicate, OrganizationCustomModuleCustomConfigPredicateArgs
- Expression string
- Textual representation of an expression in Common Expression Language syntax.
- Description string
- Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
- Location string
- String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
- Title string
- Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
- Expression string
- Textual representation of an expression in Common Expression Language syntax.
- Description string
- Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
- Location string
- String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
- Title string
- Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
- expression String
- Textual representation of an expression in Common Expression Language syntax.
- description String
- Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
- location String
- String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
- title String
- Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
- expression string
- Textual representation of an expression in Common Expression Language syntax.
- description string
- Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
- location string
- String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
- title string
- Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
- expression str
- Textual representation of an expression in Common Expression Language syntax.
- description str
- Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
- location str
- String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
- title str
- Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
- expression String
- Textual representation of an expression in Common Expression Language syntax.
- description String
- Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
- location String
- String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
- title String
- Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
OrganizationCustomModuleCustomConfigResourceSelector, OrganizationCustomModuleCustomConfigResourceSelectorArgs
- Resource
Types List<string> - The resource types to run the detector on.
- Resource
Types []string - The resource types to run the detector on.
- resource
Types List<String> - The resource types to run the detector on.
- resource
Types string[] - The resource types to run the detector on.
- resource_
types Sequence[str] - The resource types to run the detector on.
- resource
Types List<String> - The resource types to run the detector on.
Import
OrganizationCustomModule can be imported using any of these accepted formats:
organizations/{{organization}}/securityHealthAnalyticsSettings/customModules/{{name}}
{{organization}}/{{name}}
When using the pulumi import
command, OrganizationCustomModule can be imported using one of the formats above. For example:
$ pulumi import gcp:securitycenter/organizationCustomModule:OrganizationCustomModule default organizations/{{organization}}/securityHealthAnalyticsSettings/customModules/{{name}}
$ pulumi import gcp:securitycenter/organizationCustomModule:OrganizationCustomModule default {{organization}}/{{name}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-beta
Terraform Provider.