datadog.gcp.IntegrationSts
Explore with Pulumi AI
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:
- Client
Email string - Your service account email address.
- List<string>
- Tags to be associated with GCP metrics and service checks from your account.
- Automute bool
- Silence monitors for expected GCE instance shutdowns.
- Cloud
Run List<string>Revision Filters - 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.
- Host
Filters 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.
- Is
Cspm boolEnabled - Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires
resource_collection_enabled
to also be enabled. - Is
Per boolProject Quota Enabled - 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 boolChange Collection Enabled - When enabled, Datadog scans for all resource change data in your Google Cloud environment.
- Is
Security boolCommand Center Enabled - 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 List<IntegrationConfigs Sts Metric Namespace Config> - Configurations for GCP metric namespaces.
- Monitored
Resource List<IntegrationConfigs Sts Monitored Resource Config> - Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
- Resource
Collection boolEnabled - When enabled, Datadog scans for all resources in your GCP environment.
- Client
Email string - Your service account email address.
- []string
- Tags to be associated with GCP metrics and service checks from your account.
- Automute bool
- Silence monitors for expected GCE instance shutdowns.
- Cloud
Run []stringRevision Filters - 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.
- Host
Filters []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.
- Is
Cspm boolEnabled - Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires
resource_collection_enabled
to also be enabled. - Is
Per boolProject Quota Enabled - 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 boolChange Collection Enabled - When enabled, Datadog scans for all resource change data in your Google Cloud environment.
- Is
Security boolCommand Center Enabled - 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 []IntegrationConfigs Sts Metric Namespace Config Args - Configurations for GCP metric namespaces.
- Monitored
Resource []IntegrationConfigs Sts Monitored Resource Config Args - Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
- Resource
Collection boolEnabled - When enabled, Datadog scans for all resources in your GCP environment.
- client
Email String - Your service account email address.
- List<String>
- Tags to be associated with GCP metrics and service checks from your account.
- automute Boolean
- Silence monitors for expected GCE instance shutdowns.
- cloud
Run List<String>Revision Filters - 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.
- host
Filters 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.
- is
Cspm BooleanEnabled - Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires
resource_collection_enabled
to also be enabled. - is
Per BooleanProject Quota Enabled - 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 BooleanChange Collection Enabled - When enabled, Datadog scans for all resource change data in your Google Cloud environment.
- is
Security BooleanCommand Center Enabled - 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 List<IntegrationConfigs Sts Metric Namespace Config> - Configurations for GCP metric namespaces.
- monitored
Resource List<IntegrationConfigs Sts Monitored Resource Config> - Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
- resource
Collection BooleanEnabled - When enabled, Datadog scans for all resources in your GCP environment.
- client
Email string - Your service account email address.
- string[]
- Tags to be associated with GCP metrics and service checks from your account.
- automute boolean
- Silence monitors for expected GCE instance shutdowns.
- cloud
Run string[]Revision Filters - 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.
- host
Filters 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.
- is
Cspm booleanEnabled - Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires
resource_collection_enabled
to also be enabled. - is
Per booleanProject Quota Enabled - 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 booleanChange Collection Enabled - When enabled, Datadog scans for all resource change data in your Google Cloud environment.
- is
Security booleanCommand Center Enabled - 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 IntegrationConfigs Sts Metric Namespace Config[] - Configurations for GCP metric namespaces.
- monitored
Resource IntegrationConfigs Sts Monitored Resource Config[] - Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
- resource
Collection booleanEnabled - When enabled, Datadog scans for all resources in your GCP environment.
- client_
email str - Your service account email address.
- 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_ Sequence[str]revision_ filters - 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.
- 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.
- is_
cspm_ boolenabled - Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires
resource_collection_enabled
to also be enabled. - is_
per_ boolproject_ quota_ enabled - 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_ boolchange_ collection_ enabled - When enabled, Datadog scans for all resource change data in your Google Cloud environment.
- is_
security_ boolcommand_ center_ enabled - 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_ Sequence[Integrationconfigs Sts Metric Namespace Config Args] - Configurations for GCP metric namespaces.
- monitored_
resource_ Sequence[Integrationconfigs Sts Monitored Resource Config Args] - Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
- resource_
collection_ boolenabled - When enabled, Datadog scans for all resources in your GCP environment.
- client
Email String - Your service account email address.
- List<String>
- Tags to be associated with GCP metrics and service checks from your account.
- automute Boolean
- Silence monitors for expected GCE instance shutdowns.
- cloud
Run List<String>Revision Filters - 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.
- host
Filters 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.
- is
Cspm BooleanEnabled - Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires
resource_collection_enabled
to also be enabled. - is
Per BooleanProject Quota Enabled - 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 BooleanChange Collection Enabled - When enabled, Datadog scans for all resource change data in your Google Cloud environment.
- is
Security BooleanCommand Center Enabled - 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 List<Property Map>Configs - Configurations for GCP metric namespaces.
- monitored
Resource List<Property Map>Configs - Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
- resource
Collection BooleanEnabled - 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:
- Delegate
Account stringEmail - Datadog's STS Delegate Email.
- Id string
- The provider-assigned unique ID for this managed resource.
- Delegate
Account stringEmail - Datadog's STS Delegate Email.
- Id string
- The provider-assigned unique ID for this managed resource.
- delegate
Account StringEmail - Datadog's STS Delegate Email.
- id String
- The provider-assigned unique ID for this managed resource.
- delegate
Account stringEmail - Datadog's STS Delegate Email.
- id string
- The provider-assigned unique ID for this managed resource.
- delegate_
account_ stremail - Datadog's STS Delegate Email.
- id str
- The provider-assigned unique ID for this managed resource.
- delegate
Account StringEmail - 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.
- List<string>
- Tags to be associated with GCP metrics and service checks from your account.
- Automute bool
- Silence monitors for expected GCE instance shutdowns.
- Client
Email string - Your service account email address.
- Cloud
Run List<string>Revision Filters - 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.
- Delegate
Account stringEmail - Datadog's STS Delegate Email.
- Host
Filters 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.
- Is
Cspm boolEnabled - Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires
resource_collection_enabled
to also be enabled. - Is
Per boolProject Quota Enabled - 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 boolChange Collection Enabled - When enabled, Datadog scans for all resource change data in your Google Cloud environment.
- Is
Security boolCommand Center Enabled - 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 List<IntegrationConfigs Sts Metric Namespace Config> - Configurations for GCP metric namespaces.
- Monitored
Resource List<IntegrationConfigs Sts Monitored Resource Config> - Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
- Resource
Collection boolEnabled - When enabled, Datadog scans for all resources in your GCP environment.
- []string
- Tags to be associated with GCP metrics and service checks from your account.
- Automute bool
- Silence monitors for expected GCE instance shutdowns.
- Client
Email string - Your service account email address.
- Cloud
Run []stringRevision Filters - 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.
- Delegate
Account stringEmail - Datadog's STS Delegate Email.
- Host
Filters []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.
- Is
Cspm boolEnabled - Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires
resource_collection_enabled
to also be enabled. - Is
Per boolProject Quota Enabled - 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 boolChange Collection Enabled - When enabled, Datadog scans for all resource change data in your Google Cloud environment.
- Is
Security boolCommand Center Enabled - 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 []IntegrationConfigs Sts Metric Namespace Config Args - Configurations for GCP metric namespaces.
- Monitored
Resource []IntegrationConfigs Sts Monitored Resource Config Args - Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
- Resource
Collection boolEnabled - When enabled, Datadog scans for all resources in your GCP environment.
- List<String>
- Tags to be associated with GCP metrics and service checks from your account.
- automute Boolean
- Silence monitors for expected GCE instance shutdowns.
- client
Email String - Your service account email address.
- cloud
Run List<String>Revision Filters - 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.
- delegate
Account StringEmail - Datadog's STS Delegate Email.
- host
Filters 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.
- is
Cspm BooleanEnabled - Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires
resource_collection_enabled
to also be enabled. - is
Per BooleanProject Quota Enabled - 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 BooleanChange Collection Enabled - When enabled, Datadog scans for all resource change data in your Google Cloud environment.
- is
Security BooleanCommand Center Enabled - 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 List<IntegrationConfigs Sts Metric Namespace Config> - Configurations for GCP metric namespaces.
- monitored
Resource List<IntegrationConfigs Sts Monitored Resource Config> - Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
- resource
Collection BooleanEnabled - When enabled, Datadog scans for all resources in your GCP environment.
- string[]
- Tags to be associated with GCP metrics and service checks from your account.
- automute boolean
- Silence monitors for expected GCE instance shutdowns.
- client
Email string - Your service account email address.
- cloud
Run string[]Revision Filters - 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.
- delegate
Account stringEmail - Datadog's STS Delegate Email.
- host
Filters 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.
- is
Cspm booleanEnabled - Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires
resource_collection_enabled
to also be enabled. - is
Per booleanProject Quota Enabled - 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 booleanChange Collection Enabled - When enabled, Datadog scans for all resource change data in your Google Cloud environment.
- is
Security booleanCommand Center Enabled - 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 IntegrationConfigs Sts Metric Namespace Config[] - Configurations for GCP metric namespaces.
- monitored
Resource IntegrationConfigs Sts Monitored Resource Config[] - Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
- resource
Collection booleanEnabled - When enabled, Datadog scans for all resources in your GCP environment.
- 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_ Sequence[str]revision_ filters - 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.
- delegate_
account_ stremail - 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.
- is_
cspm_ boolenabled - Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires
resource_collection_enabled
to also be enabled. - is_
per_ boolproject_ quota_ enabled - 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_ boolchange_ collection_ enabled - When enabled, Datadog scans for all resource change data in your Google Cloud environment.
- is_
security_ boolcommand_ center_ enabled - 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_ Sequence[Integrationconfigs Sts Metric Namespace Config Args] - Configurations for GCP metric namespaces.
- monitored_
resource_ Sequence[Integrationconfigs Sts Monitored Resource Config Args] - Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
- resource_
collection_ boolenabled - When enabled, Datadog scans for all resources in your GCP environment.
- List<String>
- Tags to be associated with GCP metrics and service checks from your account.
- automute Boolean
- Silence monitors for expected GCE instance shutdowns.
- client
Email String - Your service account email address.
- cloud
Run List<String>Revision Filters - 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.
- delegate
Account StringEmail - Datadog's STS Delegate Email.
- host
Filters 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.
- is
Cspm BooleanEnabled - Whether Datadog collects cloud security posture management resources from your GCP project. If enabled, requires
resource_collection_enabled
to also be enabled. - is
Per BooleanProject Quota Enabled - 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 BooleanChange Collection Enabled - When enabled, Datadog scans for all resource change data in your Google Cloud environment.
- is
Security BooleanCommand Center Enabled - 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 List<Property Map>Configs - Configurations for GCP metric namespaces.
- monitored
Resource List<Property Map>Configs - Configurations for GCP monitored resources. Only monitored resources that apply to specified filters are imported into Datadog.
- resource
Collection BooleanEnabled - When enabled, Datadog scans for all resources in your GCP environment.
Supporting Types
IntegrationStsMetricNamespaceConfig, IntegrationStsMetricNamespaceConfigArgs
IntegrationStsMonitoredResourceConfig, IntegrationStsMonitoredResourceConfigArgs
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.