1. Packages
  2. Datadog Provider
  3. API Docs
  4. gcp
  5. IntegrationSts
Datadog v4.56.0 published on Thursday, Sep 18, 2025 by Pulumi

datadog.gcp.IntegrationSts

Explore with Pulumi AI

datadog logo
Datadog v4.56.0 published on Thursday, Sep 18, 2025 by Pulumi

    Provides a Datadog Integration GCP Sts resource. This can be used to create and manage Datadog - Google Cloud Platform integration.

    Create IntegrationSts Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new IntegrationSts(name: string, args: IntegrationStsArgs, opts?: CustomResourceOptions);
    @overload
    def IntegrationSts(resource_name: str,
                       args: IntegrationStsArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def IntegrationSts(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       client_email: Optional[str] = None,
                       account_tags: Optional[Sequence[str]] = None,
                       automute: Optional[bool] = None,
                       cloud_run_revision_filters: Optional[Sequence[str]] = None,
                       host_filters: Optional[Sequence[str]] = None,
                       is_cspm_enabled: Optional[bool] = None,
                       is_per_project_quota_enabled: Optional[bool] = None,
                       is_resource_change_collection_enabled: Optional[bool] = None,
                       is_security_command_center_enabled: Optional[bool] = None,
                       metric_namespace_configs: Optional[Sequence[IntegrationStsMetricNamespaceConfigArgs]] = None,
                       monitored_resource_configs: Optional[Sequence[IntegrationStsMonitoredResourceConfigArgs]] = None,
                       resource_collection_enabled: Optional[bool] = None)
    func NewIntegrationSts(ctx *Context, name string, args IntegrationStsArgs, opts ...ResourceOption) (*IntegrationSts, error)
    public IntegrationSts(string name, IntegrationStsArgs args, CustomResourceOptions? opts = null)
    public IntegrationSts(String name, IntegrationStsArgs args)
    public IntegrationSts(String name, IntegrationStsArgs args, CustomResourceOptions options)
    
    type: datadog:gcp:IntegrationSts
    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 IntegrationStsArgs
    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 IntegrationStsArgs
    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 IntegrationStsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationStsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationStsArgs
    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 integrationStsResource = new Datadog.Gcp.IntegrationSts("integrationStsResource", new()
    {
        ClientEmail = "string",
        AccountTags = new[]
        {
            "string",
        },
        Automute = false,
        IsCspmEnabled = false,
        IsPerProjectQuotaEnabled = false,
        IsResourceChangeCollectionEnabled = false,
        IsSecurityCommandCenterEnabled = false,
        MetricNamespaceConfigs = new[]
        {
            new Datadog.Gcp.Inputs.IntegrationStsMetricNamespaceConfigArgs
            {
                Disabled = false,
                Id = "string",
            },
        },
        MonitoredResourceConfigs = new[]
        {
            new Datadog.Gcp.Inputs.IntegrationStsMonitoredResourceConfigArgs
            {
                Filters = new[]
                {
                    "string",
                },
                Type = "string",
            },
        },
        ResourceCollectionEnabled = false,
    });
    
    example, err := gcp.NewIntegrationSts(ctx, "integrationStsResource", &gcp.IntegrationStsArgs{
    	ClientEmail: pulumi.String("string"),
    	AccountTags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Automute:                          pulumi.Bool(false),
    	IsCspmEnabled:                     pulumi.Bool(false),
    	IsPerProjectQuotaEnabled:          pulumi.Bool(false),
    	IsResourceChangeCollectionEnabled: pulumi.Bool(false),
    	IsSecurityCommandCenterEnabled:    pulumi.Bool(false),
    	MetricNamespaceConfigs: gcp.IntegrationStsMetricNamespaceConfigArray{
    		&gcp.IntegrationStsMetricNamespaceConfigArgs{
    			Disabled: pulumi.Bool(false),
    			Id:       pulumi.String("string"),
    		},
    	},
    	MonitoredResourceConfigs: gcp.IntegrationStsMonitoredResourceConfigArray{
    		&gcp.IntegrationStsMonitoredResourceConfigArgs{
    			Filters: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Type: pulumi.String("string"),
    		},
    	},
    	ResourceCollectionEnabled: pulumi.Bool(false),
    })
    
    var integrationStsResource = new IntegrationSts("integrationStsResource", IntegrationStsArgs.builder()
        .clientEmail("string")
        .accountTags("string")
        .automute(false)
        .isCspmEnabled(false)
        .isPerProjectQuotaEnabled(false)
        .isResourceChangeCollectionEnabled(false)
        .isSecurityCommandCenterEnabled(false)
        .metricNamespaceConfigs(IntegrationStsMetricNamespaceConfigArgs.builder()
            .disabled(false)
            .id("string")
            .build())
        .monitoredResourceConfigs(IntegrationStsMonitoredResourceConfigArgs.builder()
            .filters("string")
            .type("string")
            .build())
        .resourceCollectionEnabled(false)
        .build());
    
    integration_sts_resource = datadog.gcp.IntegrationSts("integrationStsResource",
        client_email="string",
        account_tags=["string"],
        automute=False,
        is_cspm_enabled=False,
        is_per_project_quota_enabled=False,
        is_resource_change_collection_enabled=False,
        is_security_command_center_enabled=False,
        metric_namespace_configs=[{
            "disabled": False,
            "id": "string",
        }],
        monitored_resource_configs=[{
            "filters": ["string"],
            "type": "string",
        }],
        resource_collection_enabled=False)
    
    const integrationStsResource = new datadog.gcp.IntegrationSts("integrationStsResource", {
        clientEmail: "string",
        accountTags: ["string"],
        automute: false,
        isCspmEnabled: false,
        isPerProjectQuotaEnabled: false,
        isResourceChangeCollectionEnabled: false,
        isSecurityCommandCenterEnabled: false,
        metricNamespaceConfigs: [{
            disabled: false,
            id: "string",
        }],
        monitoredResourceConfigs: [{
            filters: ["string"],
            type: "string",
        }],
        resourceCollectionEnabled: false,
    });
    
    type: datadog:gcp:IntegrationSts
    properties:
        accountTags:
            - string
        automute: false
        clientEmail: string
        isCspmEnabled: false
        isPerProjectQuotaEnabled: false
        isResourceChangeCollectionEnabled: false
        isSecurityCommandCenterEnabled: false
        metricNamespaceConfigs:
            - disabled: false
              id: string
        monitoredResourceConfigs:
            - filters:
                - string
              type: string
        resourceCollectionEnabled: false
    

    IntegrationSts Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The IntegrationSts resource accepts the following input properties:

    ClientEmail string
    Your service account email address.
    AccountTags List<string>
    Tags to be associated with GCP metrics and service checks from your account.
    Automute bool
    Silence monitors for expected GCE instance shutdowns.
    CloudRunRevisionFilters List<string>
    List of filters to limit the Cloud Run revisions that are pulled into Datadog by using tags. Only Cloud Run revision resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=cloud_run_revision

    HostFilters List<string>
    List of filters to limit the VM instances that are pulled into Datadog by using tags. Only VM instance resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=gce_instance

    IsCspmEnabled bool
    Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires resource_collection_enabled to also be enabled.
    IsPerProjectQuotaEnabled bool
    When enabled, Datadog includes the X-Goog-User-Project header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
    IsResourceChangeCollectionEnabled bool
    When enabled, Datadog scans for all resource change data in your Google Cloud environment.
    IsSecurityCommandCenterEnabled bool
    When enabled, Datadog will attempt to collect Security Command Center Findings. Note: This requires additional permissions on the service account. Defaults to false.
    MetricNamespaceConfigs List<IntegrationStsMetricNamespaceConfig>
    Configurations for GCP metric namespaces.
    MonitoredResourceConfigs List<IntegrationStsMonitoredResourceConfig>
    Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
    ResourceCollectionEnabled bool
    When enabled, Datadog scans for all resources in your GCP environment.
    ClientEmail string
    Your service account email address.
    AccountTags []string
    Tags to be associated with GCP metrics and service checks from your account.
    Automute bool
    Silence monitors for expected GCE instance shutdowns.
    CloudRunRevisionFilters []string
    List of filters to limit the Cloud Run revisions that are pulled into Datadog by using tags. Only Cloud Run revision resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=cloud_run_revision

    HostFilters []string
    List of filters to limit the VM instances that are pulled into Datadog by using tags. Only VM instance resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=gce_instance

    IsCspmEnabled bool
    Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires resource_collection_enabled to also be enabled.
    IsPerProjectQuotaEnabled bool
    When enabled, Datadog includes the X-Goog-User-Project header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
    IsResourceChangeCollectionEnabled bool
    When enabled, Datadog scans for all resource change data in your Google Cloud environment.
    IsSecurityCommandCenterEnabled bool
    When enabled, Datadog will attempt to collect Security Command Center Findings. Note: This requires additional permissions on the service account. Defaults to false.
    MetricNamespaceConfigs []IntegrationStsMetricNamespaceConfigArgs
    Configurations for GCP metric namespaces.
    MonitoredResourceConfigs []IntegrationStsMonitoredResourceConfigArgs
    Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
    ResourceCollectionEnabled bool
    When enabled, Datadog scans for all resources in your GCP environment.
    clientEmail String
    Your service account email address.
    accountTags List<String>
    Tags to be associated with GCP metrics and service checks from your account.
    automute Boolean
    Silence monitors for expected GCE instance shutdowns.
    cloudRunRevisionFilters List<String>
    List of filters to limit the Cloud Run revisions that are pulled into Datadog by using tags. Only Cloud Run revision resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=cloud_run_revision

    hostFilters List<String>
    List of filters to limit the VM instances that are pulled into Datadog by using tags. Only VM instance resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=gce_instance

    isCspmEnabled Boolean
    Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires resource_collection_enabled to also be enabled.
    isPerProjectQuotaEnabled Boolean
    When enabled, Datadog includes the X-Goog-User-Project header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
    isResourceChangeCollectionEnabled Boolean
    When enabled, Datadog scans for all resource change data in your Google Cloud environment.
    isSecurityCommandCenterEnabled Boolean
    When enabled, Datadog will attempt to collect Security Command Center Findings. Note: This requires additional permissions on the service account. Defaults to false.
    metricNamespaceConfigs List<IntegrationStsMetricNamespaceConfig>
    Configurations for GCP metric namespaces.
    monitoredResourceConfigs List<IntegrationStsMonitoredResourceConfig>
    Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
    resourceCollectionEnabled Boolean
    When enabled, Datadog scans for all resources in your GCP environment.
    clientEmail string
    Your service account email address.
    accountTags string[]
    Tags to be associated with GCP metrics and service checks from your account.
    automute boolean
    Silence monitors for expected GCE instance shutdowns.
    cloudRunRevisionFilters string[]
    List of filters to limit the Cloud Run revisions that are pulled into Datadog by using tags. Only Cloud Run revision resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=cloud_run_revision

    hostFilters string[]
    List of filters to limit the VM instances that are pulled into Datadog by using tags. Only VM instance resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=gce_instance

    isCspmEnabled boolean
    Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires resource_collection_enabled to also be enabled.
    isPerProjectQuotaEnabled boolean
    When enabled, Datadog includes the X-Goog-User-Project header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
    isResourceChangeCollectionEnabled boolean
    When enabled, Datadog scans for all resource change data in your Google Cloud environment.
    isSecurityCommandCenterEnabled boolean
    When enabled, Datadog will attempt to collect Security Command Center Findings. Note: This requires additional permissions on the service account. Defaults to false.
    metricNamespaceConfigs IntegrationStsMetricNamespaceConfig[]
    Configurations for GCP metric namespaces.
    monitoredResourceConfigs IntegrationStsMonitoredResourceConfig[]
    Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
    resourceCollectionEnabled boolean
    When enabled, Datadog scans for all resources in your GCP environment.
    client_email str
    Your service account email address.
    account_tags Sequence[str]
    Tags to be associated with GCP metrics and service checks from your account.
    automute bool
    Silence monitors for expected GCE instance shutdowns.
    cloud_run_revision_filters Sequence[str]
    List of filters to limit the Cloud Run revisions that are pulled into Datadog by using tags. Only Cloud Run revision resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=cloud_run_revision

    host_filters Sequence[str]
    List of filters to limit the VM instances that are pulled into Datadog by using tags. Only VM instance resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=gce_instance

    is_cspm_enabled bool
    Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires resource_collection_enabled to also be enabled.
    is_per_project_quota_enabled bool
    When enabled, Datadog includes the X-Goog-User-Project header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
    is_resource_change_collection_enabled bool
    When enabled, Datadog scans for all resource change data in your Google Cloud environment.
    is_security_command_center_enabled bool
    When enabled, Datadog will attempt to collect Security Command Center Findings. Note: This requires additional permissions on the service account. Defaults to false.
    metric_namespace_configs Sequence[IntegrationStsMetricNamespaceConfigArgs]
    Configurations for GCP metric namespaces.
    monitored_resource_configs Sequence[IntegrationStsMonitoredResourceConfigArgs]
    Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
    resource_collection_enabled bool
    When enabled, Datadog scans for all resources in your GCP environment.
    clientEmail String
    Your service account email address.
    accountTags List<String>
    Tags to be associated with GCP metrics and service checks from your account.
    automute Boolean
    Silence monitors for expected GCE instance shutdowns.
    cloudRunRevisionFilters List<String>
    List of filters to limit the Cloud Run revisions that are pulled into Datadog by using tags. Only Cloud Run revision resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=cloud_run_revision

    hostFilters List<String>
    List of filters to limit the VM instances that are pulled into Datadog by using tags. Only VM instance resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=gce_instance

    isCspmEnabled Boolean
    Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires resource_collection_enabled to also be enabled.
    isPerProjectQuotaEnabled Boolean
    When enabled, Datadog includes the X-Goog-User-Project header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
    isResourceChangeCollectionEnabled Boolean
    When enabled, Datadog scans for all resource change data in your Google Cloud environment.
    isSecurityCommandCenterEnabled Boolean
    When enabled, Datadog will attempt to collect Security Command Center Findings. Note: This requires additional permissions on the service account. Defaults to false.
    metricNamespaceConfigs List<Property Map>
    Configurations for GCP metric namespaces.
    monitoredResourceConfigs List<Property Map>
    Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
    resourceCollectionEnabled Boolean
    When enabled, Datadog scans for all resources in your GCP environment.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IntegrationSts resource produces the following output properties:

    DelegateAccountEmail string
    Datadog's STS Delegate Email.
    Id string
    The provider-assigned unique ID for this managed resource.
    DelegateAccountEmail string
    Datadog's STS Delegate Email.
    Id string
    The provider-assigned unique ID for this managed resource.
    delegateAccountEmail String
    Datadog's STS Delegate Email.
    id String
    The provider-assigned unique ID for this managed resource.
    delegateAccountEmail string
    Datadog's STS Delegate Email.
    id string
    The provider-assigned unique ID for this managed resource.
    delegate_account_email str
    Datadog's STS Delegate Email.
    id str
    The provider-assigned unique ID for this managed resource.
    delegateAccountEmail String
    Datadog's STS Delegate Email.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing IntegrationSts Resource

    Get an existing IntegrationSts 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?: IntegrationStsState, opts?: CustomResourceOptions): IntegrationSts
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_tags: Optional[Sequence[str]] = None,
            automute: Optional[bool] = None,
            client_email: Optional[str] = None,
            cloud_run_revision_filters: Optional[Sequence[str]] = None,
            delegate_account_email: Optional[str] = None,
            host_filters: Optional[Sequence[str]] = None,
            is_cspm_enabled: Optional[bool] = None,
            is_per_project_quota_enabled: Optional[bool] = None,
            is_resource_change_collection_enabled: Optional[bool] = None,
            is_security_command_center_enabled: Optional[bool] = None,
            metric_namespace_configs: Optional[Sequence[IntegrationStsMetricNamespaceConfigArgs]] = None,
            monitored_resource_configs: Optional[Sequence[IntegrationStsMonitoredResourceConfigArgs]] = None,
            resource_collection_enabled: Optional[bool] = None) -> IntegrationSts
    func GetIntegrationSts(ctx *Context, name string, id IDInput, state *IntegrationStsState, opts ...ResourceOption) (*IntegrationSts, error)
    public static IntegrationSts Get(string name, Input<string> id, IntegrationStsState? state, CustomResourceOptions? opts = null)
    public static IntegrationSts get(String name, Output<String> id, IntegrationStsState state, CustomResourceOptions options)
    resources:  _:    type: datadog:gcp:IntegrationSts    get:      id: ${id}
    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.
    The following state arguments are supported:
    AccountTags List<string>
    Tags to be associated with GCP metrics and service checks from your account.
    Automute bool
    Silence monitors for expected GCE instance shutdowns.
    ClientEmail string
    Your service account email address.
    CloudRunRevisionFilters List<string>
    List of filters to limit the Cloud Run revisions that are pulled into Datadog by using tags. Only Cloud Run revision resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=cloud_run_revision

    DelegateAccountEmail string
    Datadog's STS Delegate Email.
    HostFilters List<string>
    List of filters to limit the VM instances that are pulled into Datadog by using tags. Only VM instance resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=gce_instance

    IsCspmEnabled bool
    Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires resource_collection_enabled to also be enabled.
    IsPerProjectQuotaEnabled bool
    When enabled, Datadog includes the X-Goog-User-Project header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
    IsResourceChangeCollectionEnabled bool
    When enabled, Datadog scans for all resource change data in your Google Cloud environment.
    IsSecurityCommandCenterEnabled bool
    When enabled, Datadog will attempt to collect Security Command Center Findings. Note: This requires additional permissions on the service account. Defaults to false.
    MetricNamespaceConfigs List<IntegrationStsMetricNamespaceConfig>
    Configurations for GCP metric namespaces.
    MonitoredResourceConfigs List<IntegrationStsMonitoredResourceConfig>
    Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
    ResourceCollectionEnabled bool
    When enabled, Datadog scans for all resources in your GCP environment.
    AccountTags []string
    Tags to be associated with GCP metrics and service checks from your account.
    Automute bool
    Silence monitors for expected GCE instance shutdowns.
    ClientEmail string
    Your service account email address.
    CloudRunRevisionFilters []string
    List of filters to limit the Cloud Run revisions that are pulled into Datadog by using tags. Only Cloud Run revision resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=cloud_run_revision

    DelegateAccountEmail string
    Datadog's STS Delegate Email.
    HostFilters []string
    List of filters to limit the VM instances that are pulled into Datadog by using tags. Only VM instance resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=gce_instance

    IsCspmEnabled bool
    Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires resource_collection_enabled to also be enabled.
    IsPerProjectQuotaEnabled bool
    When enabled, Datadog includes the X-Goog-User-Project header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
    IsResourceChangeCollectionEnabled bool
    When enabled, Datadog scans for all resource change data in your Google Cloud environment.
    IsSecurityCommandCenterEnabled bool
    When enabled, Datadog will attempt to collect Security Command Center Findings. Note: This requires additional permissions on the service account. Defaults to false.
    MetricNamespaceConfigs []IntegrationStsMetricNamespaceConfigArgs
    Configurations for GCP metric namespaces.
    MonitoredResourceConfigs []IntegrationStsMonitoredResourceConfigArgs
    Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
    ResourceCollectionEnabled bool
    When enabled, Datadog scans for all resources in your GCP environment.
    accountTags List<String>
    Tags to be associated with GCP metrics and service checks from your account.
    automute Boolean
    Silence monitors for expected GCE instance shutdowns.
    clientEmail String
    Your service account email address.
    cloudRunRevisionFilters List<String>
    List of filters to limit the Cloud Run revisions that are pulled into Datadog by using tags. Only Cloud Run revision resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=cloud_run_revision

    delegateAccountEmail String
    Datadog's STS Delegate Email.
    hostFilters List<String>
    List of filters to limit the VM instances that are pulled into Datadog by using tags. Only VM instance resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=gce_instance

    isCspmEnabled Boolean
    Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires resource_collection_enabled to also be enabled.
    isPerProjectQuotaEnabled Boolean
    When enabled, Datadog includes the X-Goog-User-Project header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
    isResourceChangeCollectionEnabled Boolean
    When enabled, Datadog scans for all resource change data in your Google Cloud environment.
    isSecurityCommandCenterEnabled Boolean
    When enabled, Datadog will attempt to collect Security Command Center Findings. Note: This requires additional permissions on the service account. Defaults to false.
    metricNamespaceConfigs List<IntegrationStsMetricNamespaceConfig>
    Configurations for GCP metric namespaces.
    monitoredResourceConfigs List<IntegrationStsMonitoredResourceConfig>
    Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
    resourceCollectionEnabled Boolean
    When enabled, Datadog scans for all resources in your GCP environment.
    accountTags string[]
    Tags to be associated with GCP metrics and service checks from your account.
    automute boolean
    Silence monitors for expected GCE instance shutdowns.
    clientEmail string
    Your service account email address.
    cloudRunRevisionFilters string[]
    List of filters to limit the Cloud Run revisions that are pulled into Datadog by using tags. Only Cloud Run revision resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=cloud_run_revision

    delegateAccountEmail string
    Datadog's STS Delegate Email.
    hostFilters string[]
    List of filters to limit the VM instances that are pulled into Datadog by using tags. Only VM instance resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=gce_instance

    isCspmEnabled boolean
    Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires resource_collection_enabled to also be enabled.
    isPerProjectQuotaEnabled boolean
    When enabled, Datadog includes the X-Goog-User-Project header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
    isResourceChangeCollectionEnabled boolean
    When enabled, Datadog scans for all resource change data in your Google Cloud environment.
    isSecurityCommandCenterEnabled boolean
    When enabled, Datadog will attempt to collect Security Command Center Findings. Note: This requires additional permissions on the service account. Defaults to false.
    metricNamespaceConfigs IntegrationStsMetricNamespaceConfig[]
    Configurations for GCP metric namespaces.
    monitoredResourceConfigs IntegrationStsMonitoredResourceConfig[]
    Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
    resourceCollectionEnabled boolean
    When enabled, Datadog scans for all resources in your GCP environment.
    account_tags Sequence[str]
    Tags to be associated with GCP metrics and service checks from your account.
    automute bool
    Silence monitors for expected GCE instance shutdowns.
    client_email str
    Your service account email address.
    cloud_run_revision_filters Sequence[str]
    List of filters to limit the Cloud Run revisions that are pulled into Datadog by using tags. Only Cloud Run revision resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=cloud_run_revision

    delegate_account_email str
    Datadog's STS Delegate Email.
    host_filters Sequence[str]
    List of filters to limit the VM instances that are pulled into Datadog by using tags. Only VM instance resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=gce_instance

    is_cspm_enabled bool
    Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires resource_collection_enabled to also be enabled.
    is_per_project_quota_enabled bool
    When enabled, Datadog includes the X-Goog-User-Project header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
    is_resource_change_collection_enabled bool
    When enabled, Datadog scans for all resource change data in your Google Cloud environment.
    is_security_command_center_enabled bool
    When enabled, Datadog will attempt to collect Security Command Center Findings. Note: This requires additional permissions on the service account. Defaults to false.
    metric_namespace_configs Sequence[IntegrationStsMetricNamespaceConfigArgs]
    Configurations for GCP metric namespaces.
    monitored_resource_configs Sequence[IntegrationStsMonitoredResourceConfigArgs]
    Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
    resource_collection_enabled bool
    When enabled, Datadog scans for all resources in your GCP environment.
    accountTags List<String>
    Tags to be associated with GCP metrics and service checks from your account.
    automute Boolean
    Silence monitors for expected GCE instance shutdowns.
    clientEmail String
    Your service account email address.
    cloudRunRevisionFilters List<String>
    List of filters to limit the Cloud Run revisions that are pulled into Datadog by using tags. Only Cloud Run revision resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=cloud_run_revision

    delegateAccountEmail String
    Datadog's STS Delegate Email.
    hostFilters List<String>
    List of filters to limit the VM instances that are pulled into Datadog by using tags. Only VM instance resources that apply to specified filters are imported into Datadog.

    Deprecated: Note: This field is deprecated. Instead, use monitored_resource_configs with type=gce_instance

    isCspmEnabled Boolean
    Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires resource_collection_enabled to also be enabled.
    isPerProjectQuotaEnabled Boolean
    When enabled, Datadog includes the X-Goog-User-Project header to attribute Google Cloud billing and quota usage to the monitored project instead of the default service account project.
    isResourceChangeCollectionEnabled Boolean
    When enabled, Datadog scans for all resource change data in your Google Cloud environment.
    isSecurityCommandCenterEnabled Boolean
    When enabled, Datadog will attempt to collect Security Command Center Findings. Note: This requires additional permissions on the service account. Defaults to false.
    metricNamespaceConfigs List<Property Map>
    Configurations for GCP metric namespaces.
    monitoredResourceConfigs List<Property Map>
    Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
    resourceCollectionEnabled Boolean
    When enabled, Datadog scans for all resources in your GCP environment.

    Supporting Types

    IntegrationStsMetricNamespaceConfig, IntegrationStsMetricNamespaceConfigArgs

    Disabled bool
    Id string
    Disabled bool
    Id string
    disabled Boolean
    id String
    disabled boolean
    id string
    disabled bool
    id str
    disabled Boolean
    id String

    IntegrationStsMonitoredResourceConfig, IntegrationStsMonitoredResourceConfigArgs

    Filters List<string>
    Type string
    Filters []string
    Type string
    filters List<String>
    type String
    filters string[]
    type string
    filters Sequence[str]
    type str
    filters List<String>
    type String

    Import

    The pulumi import command can be used, for example:

    $ pulumi import datadog:gcp/integrationSts:IntegrationSts foo "9c303af3-b963-45e0-8c8f-469b9e1a213f"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Datadog pulumi/pulumi-datadog
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the datadog Terraform Provider.
    datadog logo
    Datadog v4.56.0 published on Thursday, Sep 18, 2025 by Pulumi