datadog.aws.IntegrationAccount
Explore with Pulumi AI
Import
$ pulumi import datadog:aws/integrationAccount:IntegrationAccount example "<datadog-aws-account-config-id>"
AWS Account Config ID can be retrieved by using the List all AWS integrations endpoint and querying by AWS Account ID.
Create IntegrationAccount Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationAccount(name: string, args: IntegrationAccountArgs, opts?: CustomResourceOptions);
@overload
def IntegrationAccount(resource_name: str,
args: IntegrationAccountArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IntegrationAccount(resource_name: str,
opts: Optional[ResourceOptions] = None,
aws_account_id: Optional[str] = None,
aws_partition: Optional[str] = None,
account_tags: Optional[Sequence[str]] = None,
auth_config: Optional[IntegrationAccountAuthConfigArgs] = None,
aws_regions: Optional[IntegrationAccountAwsRegionsArgs] = None,
logs_config: Optional[IntegrationAccountLogsConfigArgs] = None,
metrics_config: Optional[IntegrationAccountMetricsConfigArgs] = None,
resources_config: Optional[IntegrationAccountResourcesConfigArgs] = None,
traces_config: Optional[IntegrationAccountTracesConfigArgs] = None)
func NewIntegrationAccount(ctx *Context, name string, args IntegrationAccountArgs, opts ...ResourceOption) (*IntegrationAccount, error)
public IntegrationAccount(string name, IntegrationAccountArgs args, CustomResourceOptions? opts = null)
public IntegrationAccount(String name, IntegrationAccountArgs args)
public IntegrationAccount(String name, IntegrationAccountArgs args, CustomResourceOptions options)
type: datadog:aws:IntegrationAccount
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 IntegrationAccountArgs
- 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 IntegrationAccountArgs
- 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 IntegrationAccountArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationAccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationAccountArgs
- 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 integrationAccountResource = new Datadog.Aws.IntegrationAccount("integrationAccountResource", new()
{
AwsAccountId = "string",
AwsPartition = "string",
AccountTags = new[]
{
"string",
},
AuthConfig = new Datadog.Aws.Inputs.IntegrationAccountAuthConfigArgs
{
AwsAuthConfigKeys = new Datadog.Aws.Inputs.IntegrationAccountAuthConfigAwsAuthConfigKeysArgs
{
AccessKeyId = "string",
SecretAccessKey = "string",
},
AwsAuthConfigRole = new Datadog.Aws.Inputs.IntegrationAccountAuthConfigAwsAuthConfigRoleArgs
{
ExternalId = "string",
RoleName = "string",
},
},
AwsRegions = new Datadog.Aws.Inputs.IntegrationAccountAwsRegionsArgs
{
IncludeAll = false,
IncludeOnlies = new[]
{
"string",
},
},
LogsConfig = new Datadog.Aws.Inputs.IntegrationAccountLogsConfigArgs
{
LambdaForwarder = new Datadog.Aws.Inputs.IntegrationAccountLogsConfigLambdaForwarderArgs
{
Lambdas = new[]
{
"string",
},
Sources = new[]
{
"string",
},
},
},
MetricsConfig = new Datadog.Aws.Inputs.IntegrationAccountMetricsConfigArgs
{
AutomuteEnabled = false,
CollectCloudwatchAlarms = false,
CollectCustomMetrics = false,
Enabled = false,
NamespaceFilters = new Datadog.Aws.Inputs.IntegrationAccountMetricsConfigNamespaceFiltersArgs
{
ExcludeOnlies = new[]
{
"string",
},
IncludeOnlies = new[]
{
"string",
},
},
TagFilters = new[]
{
new Datadog.Aws.Inputs.IntegrationAccountMetricsConfigTagFilterArgs
{
Namespace = "string",
Tags = new[]
{
"string",
},
},
},
},
ResourcesConfig = new Datadog.Aws.Inputs.IntegrationAccountResourcesConfigArgs
{
CloudSecurityPostureManagementCollection = false,
ExtendedCollection = false,
},
TracesConfig = new Datadog.Aws.Inputs.IntegrationAccountTracesConfigArgs
{
XrayServices = new Datadog.Aws.Inputs.IntegrationAccountTracesConfigXrayServicesArgs
{
IncludeAll = false,
IncludeOnlies = new[]
{
"string",
},
},
},
});
example, err := aws.NewIntegrationAccount(ctx, "integrationAccountResource", &aws.IntegrationAccountArgs{
AwsAccountId: pulumi.String("string"),
AwsPartition: pulumi.String("string"),
AccountTags: pulumi.StringArray{
pulumi.String("string"),
},
AuthConfig: &aws.IntegrationAccountAuthConfigArgs{
AwsAuthConfigKeys: &aws.IntegrationAccountAuthConfigAwsAuthConfigKeysArgs{
AccessKeyId: pulumi.String("string"),
SecretAccessKey: pulumi.String("string"),
},
AwsAuthConfigRole: &aws.IntegrationAccountAuthConfigAwsAuthConfigRoleArgs{
ExternalId: pulumi.String("string"),
RoleName: pulumi.String("string"),
},
},
AwsRegions: &aws.IntegrationAccountAwsRegionsArgs{
IncludeAll: pulumi.Bool(false),
IncludeOnlies: pulumi.StringArray{
pulumi.String("string"),
},
},
LogsConfig: &aws.IntegrationAccountLogsConfigArgs{
LambdaForwarder: &aws.IntegrationAccountLogsConfigLambdaForwarderArgs{
Lambdas: pulumi.StringArray{
pulumi.String("string"),
},
Sources: pulumi.StringArray{
pulumi.String("string"),
},
},
},
MetricsConfig: &aws.IntegrationAccountMetricsConfigArgs{
AutomuteEnabled: pulumi.Bool(false),
CollectCloudwatchAlarms: pulumi.Bool(false),
CollectCustomMetrics: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
NamespaceFilters: &aws.IntegrationAccountMetricsConfigNamespaceFiltersArgs{
ExcludeOnlies: pulumi.StringArray{
pulumi.String("string"),
},
IncludeOnlies: pulumi.StringArray{
pulumi.String("string"),
},
},
TagFilters: aws.IntegrationAccountMetricsConfigTagFilterArray{
&aws.IntegrationAccountMetricsConfigTagFilterArgs{
Namespace: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
ResourcesConfig: &aws.IntegrationAccountResourcesConfigArgs{
CloudSecurityPostureManagementCollection: pulumi.Bool(false),
ExtendedCollection: pulumi.Bool(false),
},
TracesConfig: &aws.IntegrationAccountTracesConfigArgs{
XrayServices: &aws.IntegrationAccountTracesConfigXrayServicesArgs{
IncludeAll: pulumi.Bool(false),
IncludeOnlies: pulumi.StringArray{
pulumi.String("string"),
},
},
},
})
var integrationAccountResource = new IntegrationAccount("integrationAccountResource", IntegrationAccountArgs.builder()
.awsAccountId("string")
.awsPartition("string")
.accountTags("string")
.authConfig(IntegrationAccountAuthConfigArgs.builder()
.awsAuthConfigKeys(IntegrationAccountAuthConfigAwsAuthConfigKeysArgs.builder()
.accessKeyId("string")
.secretAccessKey("string")
.build())
.awsAuthConfigRole(IntegrationAccountAuthConfigAwsAuthConfigRoleArgs.builder()
.externalId("string")
.roleName("string")
.build())
.build())
.awsRegions(IntegrationAccountAwsRegionsArgs.builder()
.includeAll(false)
.includeOnlies("string")
.build())
.logsConfig(IntegrationAccountLogsConfigArgs.builder()
.lambdaForwarder(IntegrationAccountLogsConfigLambdaForwarderArgs.builder()
.lambdas("string")
.sources("string")
.build())
.build())
.metricsConfig(IntegrationAccountMetricsConfigArgs.builder()
.automuteEnabled(false)
.collectCloudwatchAlarms(false)
.collectCustomMetrics(false)
.enabled(false)
.namespaceFilters(IntegrationAccountMetricsConfigNamespaceFiltersArgs.builder()
.excludeOnlies("string")
.includeOnlies("string")
.build())
.tagFilters(IntegrationAccountMetricsConfigTagFilterArgs.builder()
.namespace("string")
.tags("string")
.build())
.build())
.resourcesConfig(IntegrationAccountResourcesConfigArgs.builder()
.cloudSecurityPostureManagementCollection(false)
.extendedCollection(false)
.build())
.tracesConfig(IntegrationAccountTracesConfigArgs.builder()
.xrayServices(IntegrationAccountTracesConfigXrayServicesArgs.builder()
.includeAll(false)
.includeOnlies("string")
.build())
.build())
.build());
integration_account_resource = datadog.aws.IntegrationAccount("integrationAccountResource",
aws_account_id="string",
aws_partition="string",
account_tags=["string"],
auth_config={
"aws_auth_config_keys": {
"access_key_id": "string",
"secret_access_key": "string",
},
"aws_auth_config_role": {
"external_id": "string",
"role_name": "string",
},
},
aws_regions={
"include_all": False,
"include_onlies": ["string"],
},
logs_config={
"lambda_forwarder": {
"lambdas": ["string"],
"sources": ["string"],
},
},
metrics_config={
"automute_enabled": False,
"collect_cloudwatch_alarms": False,
"collect_custom_metrics": False,
"enabled": False,
"namespace_filters": {
"exclude_onlies": ["string"],
"include_onlies": ["string"],
},
"tag_filters": [{
"namespace": "string",
"tags": ["string"],
}],
},
resources_config={
"cloud_security_posture_management_collection": False,
"extended_collection": False,
},
traces_config={
"xray_services": {
"include_all": False,
"include_onlies": ["string"],
},
})
const integrationAccountResource = new datadog.aws.IntegrationAccount("integrationAccountResource", {
awsAccountId: "string",
awsPartition: "string",
accountTags: ["string"],
authConfig: {
awsAuthConfigKeys: {
accessKeyId: "string",
secretAccessKey: "string",
},
awsAuthConfigRole: {
externalId: "string",
roleName: "string",
},
},
awsRegions: {
includeAll: false,
includeOnlies: ["string"],
},
logsConfig: {
lambdaForwarder: {
lambdas: ["string"],
sources: ["string"],
},
},
metricsConfig: {
automuteEnabled: false,
collectCloudwatchAlarms: false,
collectCustomMetrics: false,
enabled: false,
namespaceFilters: {
excludeOnlies: ["string"],
includeOnlies: ["string"],
},
tagFilters: [{
namespace: "string",
tags: ["string"],
}],
},
resourcesConfig: {
cloudSecurityPostureManagementCollection: false,
extendedCollection: false,
},
tracesConfig: {
xrayServices: {
includeAll: false,
includeOnlies: ["string"],
},
},
});
type: datadog:aws:IntegrationAccount
properties:
accountTags:
- string
authConfig:
awsAuthConfigKeys:
accessKeyId: string
secretAccessKey: string
awsAuthConfigRole:
externalId: string
roleName: string
awsAccountId: string
awsPartition: string
awsRegions:
includeAll: false
includeOnlies:
- string
logsConfig:
lambdaForwarder:
lambdas:
- string
sources:
- string
metricsConfig:
automuteEnabled: false
collectCloudwatchAlarms: false
collectCustomMetrics: false
enabled: false
namespaceFilters:
excludeOnlies:
- string
includeOnlies:
- string
tagFilters:
- namespace: string
tags:
- string
resourcesConfig:
cloudSecurityPostureManagementCollection: false
extendedCollection: false
tracesConfig:
xrayServices:
includeAll: false
includeOnlies:
- string
IntegrationAccount 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 IntegrationAccount resource accepts the following input properties:
- Aws
Account stringId - Your AWS Account ID without dashes.
- Aws
Partition string - AWS Account partition.
- List<string>
- Tags to apply to all metrics in the account. Defaults to
[]
. - Auth
Config IntegrationAccount Auth Config - Configure how Datadog authenticates to your AWS account. Either
aws_auth_config_keys
oraws_auth_config_role
block is required within. - Aws
Regions IntegrationAccount Aws Regions - AWS regions to collect data from. Defaults to
include_all
if block is empty. - Logs
Config IntegrationAccount Logs Config - Configure log autosubscription for your Datadog Forwarder Lambda functions. The
lambda_fowarder
block is required within, but may be empty to use defaults. - Metrics
Config IntegrationAccount Metrics Config - Configure metrics collection from AWS CloudWatch. The
namespace_filters
block is required within, but may be empty to use defaults. - Resources
Config IntegrationAccount Resources Config - AWS resources collection config. May be empty to use defaults.
- Traces
Config IntegrationAccount Traces Config - AWS traces collection config. The
xray_services
block is required within, but may be empty to use defaults.
- Aws
Account stringId - Your AWS Account ID without dashes.
- Aws
Partition string - AWS Account partition.
- []string
- Tags to apply to all metrics in the account. Defaults to
[]
. - Auth
Config IntegrationAccount Auth Config Args - Configure how Datadog authenticates to your AWS account. Either
aws_auth_config_keys
oraws_auth_config_role
block is required within. - Aws
Regions IntegrationAccount Aws Regions Args - AWS regions to collect data from. Defaults to
include_all
if block is empty. - Logs
Config IntegrationAccount Logs Config Args - Configure log autosubscription for your Datadog Forwarder Lambda functions. The
lambda_fowarder
block is required within, but may be empty to use defaults. - Metrics
Config IntegrationAccount Metrics Config Args - Configure metrics collection from AWS CloudWatch. The
namespace_filters
block is required within, but may be empty to use defaults. - Resources
Config IntegrationAccount Resources Config Args - AWS resources collection config. May be empty to use defaults.
- Traces
Config IntegrationAccount Traces Config Args - AWS traces collection config. The
xray_services
block is required within, but may be empty to use defaults.
- aws
Account StringId - Your AWS Account ID without dashes.
- aws
Partition String - AWS Account partition.
- List<String>
- Tags to apply to all metrics in the account. Defaults to
[]
. - auth
Config IntegrationAccount Auth Config - Configure how Datadog authenticates to your AWS account. Either
aws_auth_config_keys
oraws_auth_config_role
block is required within. - aws
Regions IntegrationAccount Aws Regions - AWS regions to collect data from. Defaults to
include_all
if block is empty. - logs
Config IntegrationAccount Logs Config - Configure log autosubscription for your Datadog Forwarder Lambda functions. The
lambda_fowarder
block is required within, but may be empty to use defaults. - metrics
Config IntegrationAccount Metrics Config - Configure metrics collection from AWS CloudWatch. The
namespace_filters
block is required within, but may be empty to use defaults. - resources
Config IntegrationAccount Resources Config - AWS resources collection config. May be empty to use defaults.
- traces
Config IntegrationAccount Traces Config - AWS traces collection config. The
xray_services
block is required within, but may be empty to use defaults.
- aws
Account stringId - Your AWS Account ID without dashes.
- aws
Partition string - AWS Account partition.
- string[]
- Tags to apply to all metrics in the account. Defaults to
[]
. - auth
Config IntegrationAccount Auth Config - Configure how Datadog authenticates to your AWS account. Either
aws_auth_config_keys
oraws_auth_config_role
block is required within. - aws
Regions IntegrationAccount Aws Regions - AWS regions to collect data from. Defaults to
include_all
if block is empty. - logs
Config IntegrationAccount Logs Config - Configure log autosubscription for your Datadog Forwarder Lambda functions. The
lambda_fowarder
block is required within, but may be empty to use defaults. - metrics
Config IntegrationAccount Metrics Config - Configure metrics collection from AWS CloudWatch. The
namespace_filters
block is required within, but may be empty to use defaults. - resources
Config IntegrationAccount Resources Config - AWS resources collection config. May be empty to use defaults.
- traces
Config IntegrationAccount Traces Config - AWS traces collection config. The
xray_services
block is required within, but may be empty to use defaults.
- aws_
account_ strid - Your AWS Account ID without dashes.
- aws_
partition str - AWS Account partition.
- Sequence[str]
- Tags to apply to all metrics in the account. Defaults to
[]
. - auth_
config IntegrationAccount Auth Config Args - Configure how Datadog authenticates to your AWS account. Either
aws_auth_config_keys
oraws_auth_config_role
block is required within. - aws_
regions IntegrationAccount Aws Regions Args - AWS regions to collect data from. Defaults to
include_all
if block is empty. - logs_
config IntegrationAccount Logs Config Args - Configure log autosubscription for your Datadog Forwarder Lambda functions. The
lambda_fowarder
block is required within, but may be empty to use defaults. - metrics_
config IntegrationAccount Metrics Config Args - Configure metrics collection from AWS CloudWatch. The
namespace_filters
block is required within, but may be empty to use defaults. - resources_
config IntegrationAccount Resources Config Args - AWS resources collection config. May be empty to use defaults.
- traces_
config IntegrationAccount Traces Config Args - AWS traces collection config. The
xray_services
block is required within, but may be empty to use defaults.
- aws
Account StringId - Your AWS Account ID without dashes.
- aws
Partition String - AWS Account partition.
- List<String>
- Tags to apply to all metrics in the account. Defaults to
[]
. - auth
Config Property Map - Configure how Datadog authenticates to your AWS account. Either
aws_auth_config_keys
oraws_auth_config_role
block is required within. - aws
Regions Property Map - AWS regions to collect data from. Defaults to
include_all
if block is empty. - logs
Config Property Map - Configure log autosubscription for your Datadog Forwarder Lambda functions. The
lambda_fowarder
block is required within, but may be empty to use defaults. - metrics
Config Property Map - Configure metrics collection from AWS CloudWatch. The
namespace_filters
block is required within, but may be empty to use defaults. - resources
Config Property Map - AWS resources collection config. May be empty to use defaults.
- traces
Config Property Map - AWS traces collection config. The
xray_services
block is required within, but may be empty to use defaults.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationAccount resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing IntegrationAccount Resource
Get an existing IntegrationAccount 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?: IntegrationAccountState, opts?: CustomResourceOptions): IntegrationAccount
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_tags: Optional[Sequence[str]] = None,
auth_config: Optional[IntegrationAccountAuthConfigArgs] = None,
aws_account_id: Optional[str] = None,
aws_partition: Optional[str] = None,
aws_regions: Optional[IntegrationAccountAwsRegionsArgs] = None,
logs_config: Optional[IntegrationAccountLogsConfigArgs] = None,
metrics_config: Optional[IntegrationAccountMetricsConfigArgs] = None,
resources_config: Optional[IntegrationAccountResourcesConfigArgs] = None,
traces_config: Optional[IntegrationAccountTracesConfigArgs] = None) -> IntegrationAccount
func GetIntegrationAccount(ctx *Context, name string, id IDInput, state *IntegrationAccountState, opts ...ResourceOption) (*IntegrationAccount, error)
public static IntegrationAccount Get(string name, Input<string> id, IntegrationAccountState? state, CustomResourceOptions? opts = null)
public static IntegrationAccount get(String name, Output<String> id, IntegrationAccountState state, CustomResourceOptions options)
resources: _: type: datadog:aws:IntegrationAccount 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 apply to all metrics in the account. Defaults to
[]
. - Auth
Config IntegrationAccount Auth Config - Configure how Datadog authenticates to your AWS account. Either
aws_auth_config_keys
oraws_auth_config_role
block is required within. - Aws
Account stringId - Your AWS Account ID without dashes.
- Aws
Partition string - AWS Account partition.
- Aws
Regions IntegrationAccount Aws Regions - AWS regions to collect data from. Defaults to
include_all
if block is empty. - Logs
Config IntegrationAccount Logs Config - Configure log autosubscription for your Datadog Forwarder Lambda functions. The
lambda_fowarder
block is required within, but may be empty to use defaults. - Metrics
Config IntegrationAccount Metrics Config - Configure metrics collection from AWS CloudWatch. The
namespace_filters
block is required within, but may be empty to use defaults. - Resources
Config IntegrationAccount Resources Config - AWS resources collection config. May be empty to use defaults.
- Traces
Config IntegrationAccount Traces Config - AWS traces collection config. The
xray_services
block is required within, but may be empty to use defaults.
- []string
- Tags to apply to all metrics in the account. Defaults to
[]
. - Auth
Config IntegrationAccount Auth Config Args - Configure how Datadog authenticates to your AWS account. Either
aws_auth_config_keys
oraws_auth_config_role
block is required within. - Aws
Account stringId - Your AWS Account ID without dashes.
- Aws
Partition string - AWS Account partition.
- Aws
Regions IntegrationAccount Aws Regions Args - AWS regions to collect data from. Defaults to
include_all
if block is empty. - Logs
Config IntegrationAccount Logs Config Args - Configure log autosubscription for your Datadog Forwarder Lambda functions. The
lambda_fowarder
block is required within, but may be empty to use defaults. - Metrics
Config IntegrationAccount Metrics Config Args - Configure metrics collection from AWS CloudWatch. The
namespace_filters
block is required within, but may be empty to use defaults. - Resources
Config IntegrationAccount Resources Config Args - AWS resources collection config. May be empty to use defaults.
- Traces
Config IntegrationAccount Traces Config Args - AWS traces collection config. The
xray_services
block is required within, but may be empty to use defaults.
- List<String>
- Tags to apply to all metrics in the account. Defaults to
[]
. - auth
Config IntegrationAccount Auth Config - Configure how Datadog authenticates to your AWS account. Either
aws_auth_config_keys
oraws_auth_config_role
block is required within. - aws
Account StringId - Your AWS Account ID without dashes.
- aws
Partition String - AWS Account partition.
- aws
Regions IntegrationAccount Aws Regions - AWS regions to collect data from. Defaults to
include_all
if block is empty. - logs
Config IntegrationAccount Logs Config - Configure log autosubscription for your Datadog Forwarder Lambda functions. The
lambda_fowarder
block is required within, but may be empty to use defaults. - metrics
Config IntegrationAccount Metrics Config - Configure metrics collection from AWS CloudWatch. The
namespace_filters
block is required within, but may be empty to use defaults. - resources
Config IntegrationAccount Resources Config - AWS resources collection config. May be empty to use defaults.
- traces
Config IntegrationAccount Traces Config - AWS traces collection config. The
xray_services
block is required within, but may be empty to use defaults.
- string[]
- Tags to apply to all metrics in the account. Defaults to
[]
. - auth
Config IntegrationAccount Auth Config - Configure how Datadog authenticates to your AWS account. Either
aws_auth_config_keys
oraws_auth_config_role
block is required within. - aws
Account stringId - Your AWS Account ID without dashes.
- aws
Partition string - AWS Account partition.
- aws
Regions IntegrationAccount Aws Regions - AWS regions to collect data from. Defaults to
include_all
if block is empty. - logs
Config IntegrationAccount Logs Config - Configure log autosubscription for your Datadog Forwarder Lambda functions. The
lambda_fowarder
block is required within, but may be empty to use defaults. - metrics
Config IntegrationAccount Metrics Config - Configure metrics collection from AWS CloudWatch. The
namespace_filters
block is required within, but may be empty to use defaults. - resources
Config IntegrationAccount Resources Config - AWS resources collection config. May be empty to use defaults.
- traces
Config IntegrationAccount Traces Config - AWS traces collection config. The
xray_services
block is required within, but may be empty to use defaults.
- Sequence[str]
- Tags to apply to all metrics in the account. Defaults to
[]
. - auth_
config IntegrationAccount Auth Config Args - Configure how Datadog authenticates to your AWS account. Either
aws_auth_config_keys
oraws_auth_config_role
block is required within. - aws_
account_ strid - Your AWS Account ID without dashes.
- aws_
partition str - AWS Account partition.
- aws_
regions IntegrationAccount Aws Regions Args - AWS regions to collect data from. Defaults to
include_all
if block is empty. - logs_
config IntegrationAccount Logs Config Args - Configure log autosubscription for your Datadog Forwarder Lambda functions. The
lambda_fowarder
block is required within, but may be empty to use defaults. - metrics_
config IntegrationAccount Metrics Config Args - Configure metrics collection from AWS CloudWatch. The
namespace_filters
block is required within, but may be empty to use defaults. - resources_
config IntegrationAccount Resources Config Args - AWS resources collection config. May be empty to use defaults.
- traces_
config IntegrationAccount Traces Config Args - AWS traces collection config. The
xray_services
block is required within, but may be empty to use defaults.
- List<String>
- Tags to apply to all metrics in the account. Defaults to
[]
. - auth
Config Property Map - Configure how Datadog authenticates to your AWS account. Either
aws_auth_config_keys
oraws_auth_config_role
block is required within. - aws
Account StringId - Your AWS Account ID without dashes.
- aws
Partition String - AWS Account partition.
- aws
Regions Property Map - AWS regions to collect data from. Defaults to
include_all
if block is empty. - logs
Config Property Map - Configure log autosubscription for your Datadog Forwarder Lambda functions. The
lambda_fowarder
block is required within, but may be empty to use defaults. - metrics
Config Property Map - Configure metrics collection from AWS CloudWatch. The
namespace_filters
block is required within, but may be empty to use defaults. - resources
Config Property Map - AWS resources collection config. May be empty to use defaults.
- traces
Config Property Map - AWS traces collection config. The
xray_services
block is required within, but may be empty to use defaults.
Supporting Types
IntegrationAccountAuthConfig, IntegrationAccountAuthConfigArgs
- Aws
Auth IntegrationConfig Keys Account Auth Config Aws Auth Config Keys - Datadog will use the provided AWS Access Key ID and Secret Access Key to authenticate to your account.
- Aws
Auth IntegrationConfig Role Account Auth Config Aws Auth Config Role
- Aws
Auth IntegrationConfig Keys Account Auth Config Aws Auth Config Keys - Datadog will use the provided AWS Access Key ID and Secret Access Key to authenticate to your account.
- Aws
Auth IntegrationConfig Role Account Auth Config Aws Auth Config Role
- aws
Auth IntegrationConfig Keys Account Auth Config Aws Auth Config Keys - Datadog will use the provided AWS Access Key ID and Secret Access Key to authenticate to your account.
- aws
Auth IntegrationConfig Role Account Auth Config Aws Auth Config Role
- aws
Auth IntegrationConfig Keys Account Auth Config Aws Auth Config Keys - Datadog will use the provided AWS Access Key ID and Secret Access Key to authenticate to your account.
- aws
Auth IntegrationConfig Role Account Auth Config Aws Auth Config Role
- aws_
auth_ Integrationconfig_ keys Account Auth Config Aws Auth Config Keys - Datadog will use the provided AWS Access Key ID and Secret Access Key to authenticate to your account.
- aws_
auth_ Integrationconfig_ role Account Auth Config Aws Auth Config Role
- aws
Auth Property MapConfig Keys - Datadog will use the provided AWS Access Key ID and Secret Access Key to authenticate to your account.
- aws
Auth Property MapConfig Role
IntegrationAccountAuthConfigAwsAuthConfigKeys, IntegrationAccountAuthConfigAwsAuthConfigKeysArgs
- Access
Key stringId - AWS Access Key ID
- Secret
Access stringKey
- Access
Key stringId - AWS Access Key ID
- Secret
Access stringKey
- access
Key StringId - AWS Access Key ID
- secret
Access StringKey
- access
Key stringId - AWS Access Key ID
- secret
Access stringKey
- access_
key_ strid - AWS Access Key ID
- secret_
access_ strkey
- access
Key StringId - AWS Access Key ID
- secret
Access StringKey
IntegrationAccountAuthConfigAwsAuthConfigRole, IntegrationAccountAuthConfigAwsAuthConfigRoleArgs
- External
Id string - AWS IAM external ID for associated role. If omitted, one is generated.
- Role
Name string - AWS IAM role name.
- External
Id string - AWS IAM external ID for associated role. If omitted, one is generated.
- Role
Name string - AWS IAM role name.
- external
Id String - AWS IAM external ID for associated role. If omitted, one is generated.
- role
Name String - AWS IAM role name.
- external
Id string - AWS IAM external ID for associated role. If omitted, one is generated.
- role
Name string - AWS IAM role name.
- external_
id str - AWS IAM external ID for associated role. If omitted, one is generated.
- role_
name str - AWS IAM role name.
- external
Id String - AWS IAM external ID for associated role. If omitted, one is generated.
- role
Name String - AWS IAM role name.
IntegrationAccountAwsRegions, IntegrationAccountAwsRegionsArgs
- Include
All bool - Include all regions. Defaults to
true
. - Include
Onlies List<string> - Include only these regions.
- Include
All bool - Include all regions. Defaults to
true
. - Include
Onlies []string - Include only these regions.
- include
All Boolean - Include all regions. Defaults to
true
. - include
Onlies List<String> - Include only these regions.
- include
All boolean - Include all regions. Defaults to
true
. - include
Onlies string[] - Include only these regions.
- include_
all bool - Include all regions. Defaults to
true
. - include_
onlies Sequence[str] - Include only these regions.
- include
All Boolean - Include all regions. Defaults to
true
. - include
Onlies List<String> - Include only these regions.
IntegrationAccountLogsConfig, IntegrationAccountLogsConfigArgs
- Lambda
Forwarder IntegrationAccount Logs Config Lambda Forwarder - Leave empty to omit logs config.
- Lambda
Forwarder IntegrationAccount Logs Config Lambda Forwarder - Leave empty to omit logs config.
- lambda
Forwarder IntegrationAccount Logs Config Lambda Forwarder - Leave empty to omit logs config.
- lambda
Forwarder IntegrationAccount Logs Config Lambda Forwarder - Leave empty to omit logs config.
- lambda_
forwarder IntegrationAccount Logs Config Lambda Forwarder - Leave empty to omit logs config.
- lambda
Forwarder Property Map - Leave empty to omit logs config.
IntegrationAccountLogsConfigLambdaForwarder, IntegrationAccountLogsConfigLambdaForwarderArgs
IntegrationAccountMetricsConfig, IntegrationAccountMetricsConfigArgs
- Automute
Enabled bool - Enable EC2 automute for AWS metrics Defaults to
true
. - Collect
Cloudwatch boolAlarms - Enable CloudWatch alarms collection Defaults to
false
. - Collect
Custom boolMetrics - Enable custom metrics collection Defaults to
false
. - Enabled bool
- Enable AWS metrics collection Defaults to
true
. - Namespace
Filters IntegrationAccount Metrics Config Namespace Filters - AWS metrics namespace filters. Defaults to a pre-set
exclude_only
list if block is empty. - Tag
Filters List<IntegrationAccount Metrics Config Tag Filter> - AWS Metrics Collection tag filters list. The array of custom AWS resource tags (in the form
key:value
) defines a filter that Datadog uses when collecting metrics from a specified service. Wildcards, such as?
(match a single character) and*
(match multiple characters), and exclusion using!
before the tag are supported. For EC2, only hosts that match one of the defined tags will be imported into Datadog. The rest will be ignored. For example,env:production,instance-type:c?.*,!region:us-east-1
.
- Automute
Enabled bool - Enable EC2 automute for AWS metrics Defaults to
true
. - Collect
Cloudwatch boolAlarms - Enable CloudWatch alarms collection Defaults to
false
. - Collect
Custom boolMetrics - Enable custom metrics collection Defaults to
false
. - Enabled bool
- Enable AWS metrics collection Defaults to
true
. - Namespace
Filters IntegrationAccount Metrics Config Namespace Filters - AWS metrics namespace filters. Defaults to a pre-set
exclude_only
list if block is empty. - Tag
Filters []IntegrationAccount Metrics Config Tag Filter - AWS Metrics Collection tag filters list. The array of custom AWS resource tags (in the form
key:value
) defines a filter that Datadog uses when collecting metrics from a specified service. Wildcards, such as?
(match a single character) and*
(match multiple characters), and exclusion using!
before the tag are supported. For EC2, only hosts that match one of the defined tags will be imported into Datadog. The rest will be ignored. For example,env:production,instance-type:c?.*,!region:us-east-1
.
- automute
Enabled Boolean - Enable EC2 automute for AWS metrics Defaults to
true
. - collect
Cloudwatch BooleanAlarms - Enable CloudWatch alarms collection Defaults to
false
. - collect
Custom BooleanMetrics - Enable custom metrics collection Defaults to
false
. - enabled Boolean
- Enable AWS metrics collection Defaults to
true
. - namespace
Filters IntegrationAccount Metrics Config Namespace Filters - AWS metrics namespace filters. Defaults to a pre-set
exclude_only
list if block is empty. - tag
Filters List<IntegrationAccount Metrics Config Tag Filter> - AWS Metrics Collection tag filters list. The array of custom AWS resource tags (in the form
key:value
) defines a filter that Datadog uses when collecting metrics from a specified service. Wildcards, such as?
(match a single character) and*
(match multiple characters), and exclusion using!
before the tag are supported. For EC2, only hosts that match one of the defined tags will be imported into Datadog. The rest will be ignored. For example,env:production,instance-type:c?.*,!region:us-east-1
.
- automute
Enabled boolean - Enable EC2 automute for AWS metrics Defaults to
true
. - collect
Cloudwatch booleanAlarms - Enable CloudWatch alarms collection Defaults to
false
. - collect
Custom booleanMetrics - Enable custom metrics collection Defaults to
false
. - enabled boolean
- Enable AWS metrics collection Defaults to
true
. - namespace
Filters IntegrationAccount Metrics Config Namespace Filters - AWS metrics namespace filters. Defaults to a pre-set
exclude_only
list if block is empty. - tag
Filters IntegrationAccount Metrics Config Tag Filter[] - AWS Metrics Collection tag filters list. The array of custom AWS resource tags (in the form
key:value
) defines a filter that Datadog uses when collecting metrics from a specified service. Wildcards, such as?
(match a single character) and*
(match multiple characters), and exclusion using!
before the tag are supported. For EC2, only hosts that match one of the defined tags will be imported into Datadog. The rest will be ignored. For example,env:production,instance-type:c?.*,!region:us-east-1
.
- automute_
enabled bool - Enable EC2 automute for AWS metrics Defaults to
true
. - collect_
cloudwatch_ boolalarms - Enable CloudWatch alarms collection Defaults to
false
. - collect_
custom_ boolmetrics - Enable custom metrics collection Defaults to
false
. - enabled bool
- Enable AWS metrics collection Defaults to
true
. - namespace_
filters IntegrationAccount Metrics Config Namespace Filters - AWS metrics namespace filters. Defaults to a pre-set
exclude_only
list if block is empty. - tag_
filters Sequence[IntegrationAccount Metrics Config Tag Filter] - AWS Metrics Collection tag filters list. The array of custom AWS resource tags (in the form
key:value
) defines a filter that Datadog uses when collecting metrics from a specified service. Wildcards, such as?
(match a single character) and*
(match multiple characters), and exclusion using!
before the tag are supported. For EC2, only hosts that match one of the defined tags will be imported into Datadog. The rest will be ignored. For example,env:production,instance-type:c?.*,!region:us-east-1
.
- automute
Enabled Boolean - Enable EC2 automute for AWS metrics Defaults to
true
. - collect
Cloudwatch BooleanAlarms - Enable CloudWatch alarms collection Defaults to
false
. - collect
Custom BooleanMetrics - Enable custom metrics collection Defaults to
false
. - enabled Boolean
- Enable AWS metrics collection Defaults to
true
. - namespace
Filters Property Map - AWS metrics namespace filters. Defaults to a pre-set
exclude_only
list if block is empty. - tag
Filters List<Property Map> - AWS Metrics Collection tag filters list. The array of custom AWS resource tags (in the form
key:value
) defines a filter that Datadog uses when collecting metrics from a specified service. Wildcards, such as?
(match a single character) and*
(match multiple characters), and exclusion using!
before the tag are supported. For EC2, only hosts that match one of the defined tags will be imported into Datadog. The rest will be ignored. For example,env:production,instance-type:c?.*,!region:us-east-1
.
IntegrationAccountMetricsConfigNamespaceFilters, IntegrationAccountMetricsConfigNamespaceFiltersArgs
- Exclude
Onlies List<string> - Exclude only these namespaces from metrics collection. Use
datadog.aws.getIntegrationAvailableNamespaces
data source to get allowed values. Defaults to["AWS/SQS", "AWS/ElasticMapReduce"]
.AWS/SQS
andAWS/ElasticMapReduce
are excluded by default to reduce your AWS CloudWatch costs fromGetMetricData
API calls. - Include
Onlies List<string> - Include only these namespaces for metrics collection. Use
datadog.aws.getIntegrationAvailableNamespaces
data source to get allowed values.
- Exclude
Onlies []string - Exclude only these namespaces from metrics collection. Use
datadog.aws.getIntegrationAvailableNamespaces
data source to get allowed values. Defaults to["AWS/SQS", "AWS/ElasticMapReduce"]
.AWS/SQS
andAWS/ElasticMapReduce
are excluded by default to reduce your AWS CloudWatch costs fromGetMetricData
API calls. - Include
Onlies []string - Include only these namespaces for metrics collection. Use
datadog.aws.getIntegrationAvailableNamespaces
data source to get allowed values.
- exclude
Onlies List<String> - Exclude only these namespaces from metrics collection. Use
datadog.aws.getIntegrationAvailableNamespaces
data source to get allowed values. Defaults to["AWS/SQS", "AWS/ElasticMapReduce"]
.AWS/SQS
andAWS/ElasticMapReduce
are excluded by default to reduce your AWS CloudWatch costs fromGetMetricData
API calls. - include
Onlies List<String> - Include only these namespaces for metrics collection. Use
datadog.aws.getIntegrationAvailableNamespaces
data source to get allowed values.
- exclude
Onlies string[] - Exclude only these namespaces from metrics collection. Use
datadog.aws.getIntegrationAvailableNamespaces
data source to get allowed values. Defaults to["AWS/SQS", "AWS/ElasticMapReduce"]
.AWS/SQS
andAWS/ElasticMapReduce
are excluded by default to reduce your AWS CloudWatch costs fromGetMetricData
API calls. - include
Onlies string[] - Include only these namespaces for metrics collection. Use
datadog.aws.getIntegrationAvailableNamespaces
data source to get allowed values.
- exclude_
onlies Sequence[str] - Exclude only these namespaces from metrics collection. Use
datadog.aws.getIntegrationAvailableNamespaces
data source to get allowed values. Defaults to["AWS/SQS", "AWS/ElasticMapReduce"]
.AWS/SQS
andAWS/ElasticMapReduce
are excluded by default to reduce your AWS CloudWatch costs fromGetMetricData
API calls. - include_
onlies Sequence[str] - Include only these namespaces for metrics collection. Use
datadog.aws.getIntegrationAvailableNamespaces
data source to get allowed values.
- exclude
Onlies List<String> - Exclude only these namespaces from metrics collection. Use
datadog.aws.getIntegrationAvailableNamespaces
data source to get allowed values. Defaults to["AWS/SQS", "AWS/ElasticMapReduce"]
.AWS/SQS
andAWS/ElasticMapReduce
are excluded by default to reduce your AWS CloudWatch costs fromGetMetricData
API calls. - include
Onlies List<String> - Include only these namespaces for metrics collection. Use
datadog.aws.getIntegrationAvailableNamespaces
data source to get allowed values.
IntegrationAccountMetricsConfigTagFilter, IntegrationAccountMetricsConfigTagFilterArgs
- Namespace string
- The AWS service for which the tag filters defined in
tags
will be applied. - List<string>
- The AWS resource tags to filter on for the service specified by
namespace
. Defaults to[]
.
- Namespace string
- The AWS service for which the tag filters defined in
tags
will be applied. - []string
- The AWS resource tags to filter on for the service specified by
namespace
. Defaults to[]
.
- namespace String
- The AWS service for which the tag filters defined in
tags
will be applied. - List<String>
- The AWS resource tags to filter on for the service specified by
namespace
. Defaults to[]
.
- namespace string
- The AWS service for which the tag filters defined in
tags
will be applied. - string[]
- The AWS resource tags to filter on for the service specified by
namespace
. Defaults to[]
.
- namespace str
- The AWS service for which the tag filters defined in
tags
will be applied. - Sequence[str]
- The AWS resource tags to filter on for the service specified by
namespace
. Defaults to[]
.
- namespace String
- The AWS service for which the tag filters defined in
tags
will be applied. - List<String>
- The AWS resource tags to filter on for the service specified by
namespace
. Defaults to[]
.
IntegrationAccountResourcesConfig, IntegrationAccountResourcesConfigArgs
- Cloud
Security boolPosture Management Collection - Enable Cloud Security Management to scan AWS resources for vulnerabilities, misconfigurations, identity risks, and compliance violations. Requires
extended_collection
to be set totrue
. Defaults tofalse
. - Extended
Collection bool - Whether Datadog collects additional attributes and configuration information about the resources in your AWS account. Required for
cloud_security_posture_management_collection
. Defaults totrue
.
- Cloud
Security boolPosture Management Collection - Enable Cloud Security Management to scan AWS resources for vulnerabilities, misconfigurations, identity risks, and compliance violations. Requires
extended_collection
to be set totrue
. Defaults tofalse
. - Extended
Collection bool - Whether Datadog collects additional attributes and configuration information about the resources in your AWS account. Required for
cloud_security_posture_management_collection
. Defaults totrue
.
- cloud
Security BooleanPosture Management Collection - Enable Cloud Security Management to scan AWS resources for vulnerabilities, misconfigurations, identity risks, and compliance violations. Requires
extended_collection
to be set totrue
. Defaults tofalse
. - extended
Collection Boolean - Whether Datadog collects additional attributes and configuration information about the resources in your AWS account. Required for
cloud_security_posture_management_collection
. Defaults totrue
.
- cloud
Security booleanPosture Management Collection - Enable Cloud Security Management to scan AWS resources for vulnerabilities, misconfigurations, identity risks, and compliance violations. Requires
extended_collection
to be set totrue
. Defaults tofalse
. - extended
Collection boolean - Whether Datadog collects additional attributes and configuration information about the resources in your AWS account. Required for
cloud_security_posture_management_collection
. Defaults totrue
.
- cloud_
security_ boolposture_ management_ collection - Enable Cloud Security Management to scan AWS resources for vulnerabilities, misconfigurations, identity risks, and compliance violations. Requires
extended_collection
to be set totrue
. Defaults tofalse
. - extended_
collection bool - Whether Datadog collects additional attributes and configuration information about the resources in your AWS account. Required for
cloud_security_posture_management_collection
. Defaults totrue
.
- cloud
Security BooleanPosture Management Collection - Enable Cloud Security Management to scan AWS resources for vulnerabilities, misconfigurations, identity risks, and compliance violations. Requires
extended_collection
to be set totrue
. Defaults tofalse
. - extended
Collection Boolean - Whether Datadog collects additional attributes and configuration information about the resources in your AWS account. Required for
cloud_security_posture_management_collection
. Defaults totrue
.
IntegrationAccountTracesConfig, IntegrationAccountTracesConfigArgs
- Xray
Services IntegrationAccount Traces Config Xray Services - AWS X-Ray services to collect traces from. Defaults to
include_only
.
- Xray
Services IntegrationAccount Traces Config Xray Services - AWS X-Ray services to collect traces from. Defaults to
include_only
.
- xray
Services IntegrationAccount Traces Config Xray Services - AWS X-Ray services to collect traces from. Defaults to
include_only
.
- xray
Services IntegrationAccount Traces Config Xray Services - AWS X-Ray services to collect traces from. Defaults to
include_only
.
- xray_
services IntegrationAccount Traces Config Xray Services - AWS X-Ray services to collect traces from. Defaults to
include_only
.
- xray
Services Property Map - AWS X-Ray services to collect traces from. Defaults to
include_only
.
IntegrationAccountTracesConfigXrayServices, IntegrationAccountTracesConfigXrayServicesArgs
- Include
All bool - Include all services.
- Include
Onlies List<string> - Include only these services. Defaults to
[]
.
- Include
All bool - Include all services.
- Include
Onlies []string - Include only these services. Defaults to
[]
.
- include
All Boolean - Include all services.
- include
Onlies List<String> - Include only these services. Defaults to
[]
.
- include
All boolean - Include all services.
- include
Onlies string[] - Include only these services. Defaults to
[]
.
- include_
all bool - Include all services.
- include_
onlies Sequence[str] - Include only these services. Defaults to
[]
.
- include
All Boolean - Include all services.
- include
Onlies List<String> - Include only these services. Defaults to
[]
.
Package Details
- Repository
- Datadog pulumi/pulumi-datadog
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
datadog
Terraform Provider.