Difference between revisions of "Terraform resource: aws cloudformation stack"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
{{lc}} | {{lc}} | ||
+ | |||
+ | |||
+ | # Use the Datadog Forwarder to ship logs from S3 and CloudWatch, as well as observability data from Lambda functions to Datadog. For more information, see | ||
+ | https://github.com/DataDog/datadog-serverless-functions/tree/master/aws/logs_monitoring | ||
+ | resource "aws_cloudformation_stack" "datadog_forwarder" { | ||
+ | name = "datadog-forwarder" | ||
+ | capabilities = ["CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_AUTO_EXPAND"] | ||
+ | parameters = { | ||
+ | DdApiKeySecretArn = "REPLACE ME WITH THE SECRETS ARN", | ||
+ | DdSite = "<SITE>", | ||
+ | FunctionName = "datadog-forwarder" | ||
+ | } | ||
+ | template_url = "https://datadog-cloudformation-template.s3.amazonaws.com/aws/forwarder/latest.yaml" | ||
+ | } | ||
== See also == | == See also == |
Revision as of 14:49, 25 June 2024
# Use the Datadog Forwarder to ship logs from S3 and CloudWatch, as well as observability data from Lambda functions to Datadog. For more information, see https://github.com/DataDog/datadog-serverless-functions/tree/master/aws/logs_monitoring resource "aws_cloudformation_stack" "datadog_forwarder" { name = "datadog-forwarder" capabilities = ["CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_AUTO_EXPAND"] parameters = { DdApiKeySecretArn = "REPLACE ME WITH THE SECRETS ARN", DdSite = "<SITE>", FunctionName = "datadog-forwarder" } template_url = "https://datadog-cloudformation-template.s3.amazonaws.com/aws/forwarder/latest.yaml" }
See also
Advertising: