AWS Datadog Forwarders Terraform module

January 8, 2026 ยท View on GitHub

Terraform module which creates resources to forward logs and metrics to Datadog on AWS.

The following resources are supported:

Please refer to the official Datadog datadog-serverless-functions for further information on the forwarder lambda functions, configuraion via environment variables, and integration with PrivateLink endpoints.

Security

There are several factors to keep in mind when working with and/or using this module that largely revolve around the decisions made based on security implications.

  1. Based on the functionality provided by the Datadog team at datadog-serverless-functions, the recommended approach for providing your Datadog API key is through AWS Secrets Manager. The creation of this secret is not facilitated by this module and should be created manually (or through some other means where the secret is not passed as plain text into Terraform as input).
    • Note: even though this is not the recommended approach, the pattern used in the past of providing the DD_API_KEY as an environment variable is still supported by the module. Users are able to provde any and all environment variables to the forwarders through inputs (i.e. - log_forwarder_environment_variables) to configure the forwarders as desired. See settings.py for more details on what environment variables are supported to configure the forwarders.
  2. The use of a KMS key to encrypt/decrypt API and APP keys is required by the rds_enhanced_monitoring_forwarder and vpc_flow_log_forwarder modules/functions per the upstream source at datadog-serverless-functions. The creation of a KMS key has been left out of this module so that users are able to better manage their KMS CMK key (and therefore the policies and usage of said key) as they see fit without over-complicating this module.
  3. The roles and their permissions created by this module have several built in conditional checks in order to provide permission sets that allow the desired functionality while following the recommended approach of least privelege access. Nearly all attributes for the IAM roles and their permissions are accessible via inputs - even allowing users to provide their own IAM roles and/or policies to meet their organizational requirements.

Vendored Artifacts

Due to Terraform not dealing with dynamically created files, especially in ephemeral environments like CI/CD pipelines, the decision was made to vendor the Lambda function artifacts within the VPC Flow Log and RDS Enhanced Monitoring modules to avoid issues. When the upstream artifacts are hosted as zipped archives available on GitHub, similar to the Log Forwarder, then this vendoring hack will be removed in favor of pulling directly from the project. Ref Issue #374

Usage

See examples directory for working examples to reference:

# Note: you will need to create this secret manually prior to running
# This avoids having to pass the key to Terraform in plaintext
data "aws_secretsmanager_secret" "datadog_api_key" {
  name = "datadog/api_key"
}

module "datadog_forwarders" {
  source  = "terraform-aws-modules/datadog-forwarders/aws"

  kms_alias             = "alias/datadog" # KMS key will need to be created outside of module
  dd_api_key_secret_arn = data.aws_secretsmanager_secret.datadog_api_key.arn

  tags = {
    Terraform   = "true"
    Environment = "dev"
  }
}

Examples

Examples codified under the examples are intended to give users references for how to use the module(s) as well as testing/validating changes to the source code of the module(s). If contributing to the project, please be sure to make any appropriate updates to the relevant examples to allow maintainers to test your changes and to keep the examples up to date for users. Thank you!

Requirements

NameVersion
terraform>= 1.5.7
aws>= 6.28

Providers

NameVersion
aws>= 6.28

Modules

NameSourceVersion
log_forwarder./modules/log_forwardern/a
rds_enhanced_monitoring_forwarder./modules/rds_enhanced_monitoring_forwardern/a
vpc_flow_log_forwarder./modules/vpc_flow_log_forwardern/a

Resources

NameType
aws_vpc_endpoint.agentresource
aws_vpc_endpoint.apiresource
aws_vpc_endpoint.log_forwarderresource
aws_vpc_endpoint.metricsresource
aws_vpc_endpoint.processesresource
aws_vpc_endpoint.tracesresource

Inputs

NameDescriptionTypeDefaultRequired
agent_vpce_policyPolicy to attach to the agent endpoint that controls access to the service. Defaults to full accessanynullno
agent_vpce_security_group_idsIDs of security groups to attach to agent endpointlist(string)[]no
agent_vpce_subnet_idsIDs of subnets to associate with agent endpointlist(string)[]no
agent_vpce_tagsA map of tags to apply to the Datadog agent endpointmap(string){}no
api_vpce_policyPolicy to attach to the API endpoint that controls access to the service. Defaults to full accessanynullno
api_vpce_security_group_idsIDs of security groups to attach to API endpointlist(string)[]no
api_vpce_subnet_idsIDs of subnets to associate with API endpointlist(string)[]no
api_vpce_tagsA map of tags to apply to the API endpointmap(string){}no
bucket_attach_deny_insecure_transport_policyControls if S3 bucket should have deny non-SSL transport policy attachedsbooltrueno
bucket_encryption_settingsS3 bucket server side encryption settingsmap(string)
{
"sse_algorithm": "AES256"
}
no
bucket_nameLambda artifact S3 bucket namestring""no
create_agent_vpceControls whether an agent endpoint should be createdboolfalseno
create_api_vpceControls whether a API endpoint should be createdboolfalseno
create_bucketControls whether an S3 artifact bucket should be created. this is used for the zip archive as well as caching tagsbooltrueno
create_log_forwarderControls whether log forwarder resources should be createdbooltrueno
create_log_forwarder_roleControls whether an IAM role is created for the log forwarderbooltrueno
create_log_forwarder_role_policyControls whether an IAM role policy is created for the log forwarderbooltrueno
create_log_forwarder_vpceControls whether a log forwarder endpoint should be createdboolfalseno
create_metrics_vpceControls whether a metrics VPC endpoint should be createdboolfalseno
create_processes_vpceControls whether a processes endpoint should be createdboolfalseno
create_rds_em_forwarderControls whether RDS enhanced monitoring forwarder resources should be createdbooltrueno
create_rds_em_forwarder_roleControls whether an IAM role is created for the RDS enhanced monitoring forwarderbooltrueno
create_rds_em_forwarder_role_policyControls whether an IAM role policy is created for the RDS enhanced monitoring forwarderbooltrueno
create_traces_vpceControls whether a traces endpoint should be createdboolfalseno
create_vpc_fl_forwarderControls whether VPC flow log forwarder resources should be createdbooltrueno
create_vpc_fl_forwarder_roleControls whether an IAM role is created for the VPC flow log forwarderbooltrueno
create_vpc_fl_forwarder_role_policyControls whether an IAM role policy is created for the VPC flow log forwarderbooltrueno
dd_api_keyThe Datadog API key, which can be found from the APIs page (/account/settings#api). It will be stored in AWS Secrets Manager securely. If DdApiKeySecretArn is also set, this value will not be used. This value must still be set, howeverstring""no
dd_api_key_secret_arnThe ARN of the Secrets Manager secret storing the Datadog API key, if you already have it stored in Secrets Manager. You still need to set a dummy value for dd_api_key to satisfy the requirement, though that value won't be usedstring""no
dd_app_keyThe Datadog application key associated with the user account that created it, which can be found from the APIs pagestring""no
dd_siteDefine your Datadog Site to send data to. For the Datadog EU site, set to datadoghq.eustring"datadoghq.com"no
kms_aliasAlias of KMS key used to encrypt the Datadog API keys - must start with alias/stringn/ayes
log_forwarder_architecturesInstruction set architecture for your Lambda function. Valid values are ["x86_64"] and ["arm64"]. Default is ["arm64"]list(string)
[
"arm64"
]
no
log_forwarder_bucket_prefixS3 object key prefix to prepend to zip archive namestring""no
log_forwarder_bucket_tagsA map of tags to apply to the log forwarder bucketmap(any){}no
log_forwarder_environment_variablesA map of environment variables for the log forwarder lambda functionmap(string){}no
log_forwarder_kms_key_arnKMS key that is used to encrypt environment variables. If this configuration is not provided when environment variables are in use, AWS Lambda uses a default service keystringnullno
log_forwarder_lambda_tagsA map of tags to apply to the log forwarder lambda functionmap(string){}no
log_forwarder_layersList of Lambda Layer Version ARNs (maximum of 5) to attach to the log forwarder lambdalist(string)[]no
log_forwarder_log_kms_key_idThe AWS KMS Key ARN to use for CloudWatch log group encryptionstringnullno
log_forwarder_log_retention_daysLog forwarder CloudWatch log group retention in daysnumber7no
log_forwarder_memory_sizeMemory size for the log forwarder lambda functionnumber1024no
log_forwarder_nameLog forwarder lambda namestring"datadog-log-forwarder"no
log_forwarder_policy_arnIAM policy arn for log forwarder lambda function to utilizestringnullno
log_forwarder_policy_nameLog forwarder policy namestring""no
log_forwarder_policy_pathLog forwarder policy pathstringnullno
log_forwarder_publishWhether to publish creation/change as a new Lambda Function Versionboolfalseno
log_forwarder_reserved_concurrent_executionsThe amount of reserved concurrent executions for the log forwarder lambda functionnumber100no
log_forwarder_role_arnIAM role arn for log forwarder lambda function to utilizestringnullno
log_forwarder_role_max_session_durationThe maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default maximum of one hour is applied. This setting can have a value from 1 hour to 12 hoursnumbernullno
log_forwarder_role_nameLog forwarder role namestring""no
log_forwarder_role_pathLog forwarder role pathstringnullno
log_forwarder_role_permissions_boundaryThe ARN of the policy that is used to set the permissions boundary for the log forwarder rolestringnullno
log_forwarder_role_tagsA map of tags to apply to the log forwarder rolemap(string){}no
log_forwarder_runtimeLambda function runtimestring"python3.12"no
log_forwarder_s3_log_bucket_arnsS3 log buckets for forwarder to read and forward logs to Datadoglist(string)[]no
log_forwarder_s3_zip_kms_key_idThe AWS KMS Key ARN to use for object encryptionstringnullno
log_forwarder_s3_zip_metadataA map of keys/values to provision metadata (will be automatically prefixed by x-amz-meta-map(string){}no
log_forwarder_s3_zip_server_side_encryptionServer-side encryption of the zip object in S3. Valid values are AES256 and aws:kmsstringnullno
log_forwarder_s3_zip_storage_classSpecifies the desired Storage Class for the zip object. Can be either STANDARD, REDUCED_REDUNDANCY, ONEZONE_IA, INTELLIGENT_TIERING, or STANDARD_IAstringnullno
log_forwarder_s3_zip_tagsA map of tags to apply to the zip archive in S3map(string){}no
log_forwarder_s3_zip_tags_onlySet to true to not merge var.tags with log_forwarder_s3_zip_tags. Useful to avoid breaching S3 Object 10 tag limitboolfalseno
log_forwarder_security_group_idsList of security group ids when forwarder lambda function should run in the VPClist(string)nullno
log_forwarder_subnet_idsList of subnet ids when forwarder lambda function should run in the VPC. Usually private or intra subnetslist(string)nullno
log_forwarder_tagsA map of tags to apply to the log forwarder resourcesmap(string){}no
log_forwarder_timeoutThe amount of time the log forwarder lambda has to execute in secondsnumber120no
log_forwarder_use_policy_name_prefixWhether to use unique name beginning with the specified policy_name for the log forwarder policyboolfalseno
log_forwarder_use_role_name_prefixWhether to use unique name beginning with the specified role_name for the log forwarder roleboolfalseno
log_forwarder_versionForwarder version - see https://github.com/DataDog/datadog-serverless-functions/releasesstring"4.12.0"no
log_forwarder_vpce_policyPolicy to attach to the log forwarder endpoint that controls access to the service. Defaults to full accessanynullno
log_forwarder_vpce_security_group_idsIDs of security groups to attach to log forwarder endpointlist(string)[]no
log_forwarder_vpce_subnet_idsIDs of subnets to associate with log forwarder endpointlist(string)[]no
log_forwarder_vpce_tagsA map of tags to apply to the log forwarder endpointmap(string){}no
metrics_vpce_policyPolicy to attach to the metrics endpoint that controls access to the service. Defaults to full accessanynullno
metrics_vpce_security_group_idsIDs of security groups to attach to metrics endpointlist(string)[]no
metrics_vpce_subnet_idsIDs of subnets to associate with metrics endpointlist(string)[]no
metrics_vpce_tagsA map of tags to apply to the metrics endpointmap(string){}no
processes_vpce_policyPolicy to attach to the processes endpoint that controls access to the service. Defaults to full accessanynullno
processes_vpce_security_group_idsIDs of security groups to attach to processes endpointlist(string)[]no
processes_vpce_subnet_idsIDs of subnets to associate with processes endpointlist(string)[]no
processes_vpce_tagsA map of tags to apply to the processes endpointmap(string){}no
rds_em_forwarder_architecturesInstruction set architecture for your Lambda function. Valid values are ["x86_64"] and ["arm64"]. Default is ["arm64"]list(string)
[
"arm64"
]
no
rds_em_forwarder_environment_variablesA map of environment variables for the RDS enhanced monitoring forwarder lambda functionmap(string){}no
rds_em_forwarder_kms_key_arnKMS key that is used to encrypt environment variables. If this configuration is not provided when environment variables are in use, AWS Lambda uses a default service keystringnullno
rds_em_forwarder_lambda_tagsA map of tags to apply to the RDS enhanced monitoring forwarder lambda functionmap(string){}no
rds_em_forwarder_layersList of Lambda Layer Version ARNs (maximum of 5) to attach to the RDS enhanced monitoring forwarder lambdalist(string)[]no
rds_em_forwarder_log_kms_key_idThe AWS KMS Key ARN to use for CloudWatch log group encryptionstringnullno
rds_em_forwarder_log_retention_daysRDS enhanced monitoring forwarder CloudWatch log group retention in daysnumber7no
rds_em_forwarder_memory_sizeMemory size for the RDS enhanced monitoring forwarder lambda functionnumber256no
rds_em_forwarder_nameRDS enhanced monitoring forwarder lambda namestring"datadog-rds-enhanced-monitoring-forwarder"no
rds_em_forwarder_policy_arnIAM policy arn for RDS enhanced monitoring forwarder lambda function to utilizestringnullno
rds_em_forwarder_policy_nameRDS enhanced monitoring forwarder policy namestring""no
rds_em_forwarder_policy_pathRDS enhanced monitoring forwarder policy pathstringnullno
rds_em_forwarder_publishWhether to publish creation/change as a new fambda function Versionboolfalseno
rds_em_forwarder_reserved_concurrent_executionsThe amount of reserved concurrent executions for the RDS enhanced monitoring forwarder lambda functionnumber10no
rds_em_forwarder_role_arnIAM role arn for RDS enhanced monitoring forwarder lambda function to utilizestringnullno
rds_em_forwarder_role_max_session_durationThe maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default maximum of one hour is applied. This setting can have a value from 1 hour to 12 hoursnumbernullno
rds_em_forwarder_role_nameRDS enhanced monitoring forwarder role namestring""no
rds_em_forwarder_role_pathRDS enhanced monitoring forwarder role pathstringnullno
rds_em_forwarder_role_permissions_boundaryThe ARN of the policy that is used to set the permissions boundary for the RDS enhanced monitoring forwarder rolestringnullno
rds_em_forwarder_role_tagsA map of tags to apply to the RDS enhanced monitoring forwarder rolemap(string){}no
rds_em_forwarder_runtimeLambda function runtimestring"python3.12"no
rds_em_forwarder_security_group_idsList of security group ids when forwarder lambda function should run in the VPClist(string)nullno
rds_em_forwarder_subnet_idsList of subnet ids when forwarder lambda function should run in the VPC. Usually private or intra subnetslist(string)nullno
rds_em_forwarder_tagsA map of tags to apply to the RDS enhanced monitoring forwarder resourcesmap(string){}no
rds_em_forwarder_timeoutThe amount of time the RDS enhanced monitoring forwarder lambda has to execute in secondsnumber10no
rds_em_forwarder_use_policy_name_prefixWhether to use unique name beginning with the specified rds_em_forwarder_policy_name for the RDS enhanced monitoring forwarder roleboolfalseno
rds_em_forwarder_use_role_name_prefixWhether to use unique name beginning with the specified rds_em_forwarder_role_name for the RDS enhanced monitoring forwarder roleboolfalseno
rds_em_forwarder_versionRDS enhanced monitoring lambda version - see https://github.com/DataDog/datadog-serverless-functions/releasesstring"4.12.0"no
tagsA map of tags to use on all resourcesmap(string){}no
traces_vpce_policyPolicy to attach to the traces endpoint that controls access to the service. Defaults to full accessanynullno
traces_vpce_security_group_idsIDs of security groups to attach to traces endpointlist(string)[]no
traces_vpce_subnet_idsIDs of subnets to associate with traces endpointlist(string)[]no
traces_vpce_tagsA map of tags to apply to the traces endpointmap(string){}no
vpc_fl_forwarder_architecturesInstruction set architecture for your Lambda function. Valid values are ["x86_64"] and ["arm64"]. Default is ["arm64"]list(string)
[
"arm64"
]
no
vpc_fl_forwarder_environment_variablesA map of environment variables for the VPC flow log forwarder lambda functionmap(string){}no
vpc_fl_forwarder_kms_key_arnKMS key that is used to encrypt environment variables. If this configuration is not provided when environment variables are in use, AWS Lambda uses a default service keystringnullno
vpc_fl_forwarder_lambda_tagsA map of tags to apply to the VPC flow log forwarder lambda functionmap(string){}no
vpc_fl_forwarder_layersList of Lambda Layer Version ARNs (maximum of 5) to attach to the VPC flow log forwarder lambdalist(string)[]no
vpc_fl_forwarder_log_kms_key_idThe AWS KMS Key ARN to use for CloudWatch log group encryptionstringnullno
vpc_fl_forwarder_log_retention_daysVPC flow log forwarder CloudWatch log group retention in daysnumber7no
vpc_fl_forwarder_memory_sizeMemory size for the VPC flow log forwarder lambda functionnumber256no
vpc_fl_forwarder_nameVPC flow log forwarder lambda namestring"datadog-vpc-flow-log-forwarder"no
vpc_fl_forwarder_policy_arnIAM policy arn for VPC flow log forwarder lambda function to utilizestringnullno
vpc_fl_forwarder_policy_nameVPC flow log forwarder policy namestring""no
vpc_fl_forwarder_policy_pathVPC flow log forwarder policy pathstringnullno
vpc_fl_forwarder_publishWhether to publish creation/change as a new fambda function Versionboolfalseno
vpc_fl_forwarder_read_cloudwatch_logsWhether the VPC flow log forwarder will read CloudWatch log groups for VPC flow logsboolfalseno
vpc_fl_forwarder_reserved_concurrent_executionsThe amount of reserved concurrent executions for the VPC flow log forwarder lambda functionnumber10no
vpc_fl_forwarder_role_arnIAM role arn for VPC flow log forwarder lambda function to utilizestringnullno
vpc_fl_forwarder_role_max_session_durationThe maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default maximum of one hour is applied. This setting can have a value from 1 hour to 12 hoursnumbernullno
vpc_fl_forwarder_role_nameVPC flow log forwarder role namestring""no
vpc_fl_forwarder_role_pathVPC flow log forwarder role pathstringnullno
vpc_fl_forwarder_role_permissions_boundaryThe ARN of the policy that is used to set the permissions boundary for the VPC flow log forwarder rolestringnullno
vpc_fl_forwarder_role_tagsA map of tags to apply to the VPC flow log forwarder rolemap(string){}no
vpc_fl_forwarder_runtimeLambda function runtimestring"python3.12"no
vpc_fl_forwarder_s3_log_bucket_arnsS3 log buckets for VPC flow log forwarder to read and forward to Datadoglist(string)[]no
vpc_fl_forwarder_security_group_idsList of security group ids when forwarder lambda function should run in the VPClist(string)nullno
vpc_fl_forwarder_subnet_idsList of subnet ids when forwarder lambda function should run in the VPC. Usually private or intra subnetslist(string)nullno
vpc_fl_forwarder_tagsA map of tags to apply to the VPC flow log forwarder resourcesmap(string){}no
vpc_fl_forwarder_timeoutThe amount of time the VPC flow log forwarder lambda has to execute in secondsnumber10no
vpc_fl_forwarder_use_policy_name_prefixWhether to use unique name beginning with the specified vpc_fl_forwarder_policy_name for the VPC flow log forwarder roleboolfalseno
vpc_fl_forwarder_use_role_name_prefixWhether to use unique name beginning with the specified vpc_fl_forwarder_role_name for the VPC flow log forwarder roleboolfalseno
vpc_fl_forwarder_versionVPC flow log lambda version - see https://github.com/DataDog/datadog-serverless-functions/releasesstring"4.12.0"no
vpc_idID of VPC to provision endpoints withinstringnullno

Outputs

NameDescription
agent_endpoint_arnARN of the agent VPC endpoint
agent_endpoint_dns_entryDNS entries of the agent VPC endpoint
agent_endpoint_idID of the agent VPC endpoint
agent_endpoint_network_interface_idsOne or more network interfaces for the agent VPC endpoint
agent_endpoint_owner_idThe ID of the AWS account that owns the agent VPC endpoint
agent_endpoint_stateThe state of the agent VPC endpoint
api_endpoint_arnARN of the API VPC endpoint
api_endpoint_dns_entryDNS entries of the API VPC endpoint
api_endpoint_idID of the API VPC endpoint
api_endpoint_network_interface_idsOne or more network interfaces for API api VPC endpoint
api_endpoint_owner_idThe ID of the AWS account that owns the API VPC endpoint
api_endpoint_stateThe state of the API VPC endpoint
log_forwarder_cloudwatch_log_group_arnThe ARN of the log forwarder lambda function CloudWatch log group
log_forwarder_endpoint_arnARN of the log forwarder VPC endpoint
log_forwarder_endpoint_dns_entryDNS entries of the log forwarder VPC endpoint
log_forwarder_endpoint_idID of the log forwarder VPC endpoint
log_forwarder_endpoint_network_interface_idsOne or more network interfaces for the log forwarder VPC endpoint
log_forwarder_endpoint_owner_idThe ID of the AWS account that owns the log forwarder VPC endpoint
log_forwarder_endpoint_stateThe state of the log forwarder VPC endpoint
log_forwarder_lambda_arnThe ARN of the log forwarder lambda function
log_forwarder_lambda_kms_key_arn(Optional) The ARN for the KMS encryption key for the log forwarder lambda function
log_forwarder_lambda_qualified_arnThe ARN of the log forwarder lambda function (if versioning is enabled via publish = true)
log_forwarder_lambda_source_code_hashBase64-encoded representation of raw SHA-256 sum of the log forwarder zip file, provided either via filename or s3_* parameters
log_forwarder_lambda_versionLatest published version of the log forwarder lambda function
log_forwarder_role_arnThe log forwarder lambda role arn
log_forwarder_role_idThe log forwarder lambda role id
log_forwarder_role_nameThe log forwarder lambda role name
log_forwarder_role_policy_arnThe ARN of the log forwarder lambda role policy
log_forwarder_role_policy_idThe ID of the log forwarder lambda role policy
log_forwarder_role_policy_nameThe name of the log forwarder lambda role policy
log_forwarder_role_unique_idThe stable and unique string identifying the log forwarder lambda role
log_forwarder_s3_bucket_arnThe ARN of the log forwarder bucket. Will be of format arn:aws:s3:::bucketname
log_forwarder_s3_bucket_domain_nameThe log forwarder bucket domain name. Will be of format bucketname.s3.amazonaws.com
log_forwarder_s3_bucket_idThe name of the log forwarder bucket
log_forwarder_s3_bucket_regional_domain_nameThe log forwarder bucket region-specific domain name. The bucket domain name including the region name
log_forwarder_s3_object_etagThe ETag generated for the log forwarder lambda zip object (an MD5 sum of the object content)
log_forwarder_s3_object_idThe key of the log forwarder lambda zip archive
log_forwarder_s3_object_versionA unique version ID value for the log forwarder lambda zip object, if bucket versioning is enabled
metrics_endpoint_arnARN of the metrics VPC endpoint
metrics_endpoint_dns_entryDNS entries of the metrics VPC endpoint
metrics_endpoint_idID of the metrics VPC endpoint
metrics_endpoint_network_interface_idsOne or more network interfaces for the metrics VPC endpoint
metrics_endpoint_owner_idThe ID of the AWS account that owns the metrics VPC endpoint
metrics_endpoint_stateThe state of the metrics VPC endpoint
processes_endpoint_arnARN of the processes VPC endpoint
processes_endpoint_dns_entryDNS entries of the processes VPC endpoint
processes_endpoint_idID of the processes VPC endpoint
processes_endpoint_network_interface_idsOne or more network interfaces for the processes VPC endpoint
processes_endpoint_owner_idThe ID of the AWS account that owns the processes VPC endpoint
processes_endpoint_stateThe state of the processes VPC endpoint
rds_em_forwarder_cloudwatch_log_group_arnThe ARN of the RDS enhanced monitoring forwarder lambda function CloudWatch log group
rds_em_forwarder_lambda_arnThe ARN of the RDS enhanced monitoring forwarder lambda function
rds_em_forwarder_lambda_kms_key_arn(Optional) The ARN for the KMS encryption key for the RDS enhanced monitoring forwarder lambda function
rds_em_forwarder_lambda_qualified_arnThe ARN of the RDS enhanced monitoring forwarder lambda function (if versioning is enabled via publish = true)
rds_em_forwarder_lambda_source_code_hashBase64-encoded representation of raw SHA-256 sum of the RDS enhanced monitoring lambda forwarder zip file, provided either via filename or s3_* parameters
rds_em_forwarder_lambda_versionLatest published version of the RDS enhanced monitoring forwarder lambda function
rds_em_forwarder_role_arnThe RDS enhanced monitoring forwarder lambda role arn
rds_em_forwarder_role_idThe RDS enhanced monitoring forwarder lambda role id
rds_em_forwarder_role_nameThe RDS enhanced monitoring forwarder lambda role name
rds_em_forwarder_role_policy_arnThe ARN of the RDS enhanced monitoring forwarder lambda role policy
rds_em_forwarder_role_policy_idThe ID of the RDS enhanced monitoring forwarder lambda role policy
rds_em_forwarder_role_policy_nameThe name of the RDS enhanced monitoring forwarder lambda role policy
rds_em_forwarder_role_unique_idThe stable and unique string identifying the RDS enhanced monitoring forwarder lambda role.
traces_endpoint_arnARN of the traces VPC endpoint
traces_endpoint_dns_entryDNS entries of the traces VPC endpoint
traces_endpoint_idID of the traces VPC endpoint
traces_endpoint_network_interface_idsOne or more network interfaces for the traces VPC endpoint
traces_endpoint_owner_idThe ID of the AWS account that owns the traces VPC endpoint
traces_endpoint_stateThe state of the traces VPC endpoint
vpc_fl_forwarder_cloudwatch_log_group_arnThe ARN of the VPC flow log forwarder lambda function CloudWatch log group
vpc_fl_forwarder_lambda_arnThe ARN of the VPC flow log forwarder lambda function
vpc_fl_forwarder_lambda_kms_key_arn(Optional) The ARN for the KMS encryption key for the VPC flow log forwarder lambda function
vpc_fl_forwarder_lambda_qualified_arnThe ARN of the VPC flow log forwarder lambda function (if versioning is enabled via publish = true)
vpc_fl_forwarder_lambda_source_code_hashBase64-encoded representation of raw SHA-256 sum of the VPC flow log forwarder lambda zip file, provided either via filename or s3_* parameters
vpc_fl_forwarder_lambda_versionLatest published version of the VPC flow log forwarder lambda function
vpc_fl_forwarder_role_arnThe VPC flow log forwarder lambda role arn
vpc_fl_forwarder_role_idThe VPC flow log forwarder lambda role id
vpc_fl_forwarder_role_nameThe VPC flow log forwarder lambda role name
vpc_fl_forwarder_role_policy_arnThe ARN of the VPC flow log forwarder lambda role policy
vpc_fl_forwarder_role_policy_idThe ID of the VPC flow log forwarder lambda role policy
vpc_fl_forwarder_role_policy_nameThe name of the VPC flow log forwarder lambda role policy
vpc_fl_forwarder_role_unique_idThe stable and unique string identifying the VPC flow log forwarder lambda role.

License

Apache-2.0 Licensed. See LICENSE.