File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ resource aws_cloudformation_stack "datadog-forwarder" {
5
5
DdApiKeySecretArn = aws_secretsmanager_secret.datadog_api_key.arn
6
6
DdApiKey = " dummy-value"
7
7
DdTags = " namespace:${ var . namespace } ,env:${ var . env } "
8
+ DdSite = var.dd_forwarder_dd_site
8
9
ExcludeAtMatch = var.log_exclude_at_match
9
10
FunctionName = " ${ local . stack_prefix } datadog-forwarder"
10
11
}
Original file line number Diff line number Diff line change @@ -66,7 +66,13 @@ variable "log_exclude_at_match" {
66
66
variable "dd_forwarder_template_version" {
67
67
description = " Sets Datadog Forwarder version to use"
68
68
type = string
69
- default = " 3.13.0"
69
+ default = " 3.17.0"
70
+ }
71
+
72
+ variable "dd_forwarder_dd_site" {
73
+ type = string
74
+ default = " datadoghq.com"
75
+ description = " Define your Datadog Site to send data to. For the Datadog EU site, set to datadoghq.eu"
70
76
}
71
77
72
78
variable "excluded_regions" {
You can’t perform that action at this time.
0 commit comments