Skip to content

Commit a603e25

Browse files
Artem Kajalainenhouqp
authored andcommitted
fix formatting
1 parent 0a56b65 commit a603e25

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

logs_monitoring.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
resource aws_cloudformation_stack "datadog-forwarder" {
22
name = "${local.stack_prefix}datadog-forwarder"
33
capabilities = ["CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_AUTO_EXPAND"]
4-
parameters = {
4+
parameters = {
55
DdApiKeySecretArn = aws_secretsmanager_secret.datadog_api_key.arn
66
DdApiKey = "dummy-value"
77
DdTags = "namespace:${var.namespace},env:${var.env}"
88
ExcludeAtMatch = var.log_exclude_at_match
99
FunctionName = "${local.stack_prefix}datadog-forwarder"
1010
}
11-
template_url = "https://datadog-cloudformation-template.s3.amazonaws.com/aws/forwarder/${var.dd_forwarer_template_version}.yaml"
11+
template_url = "https://datadog-cloudformation-template.s3.amazonaws.com/aws/forwarder/${var.dd_forwarder_template_version}.yaml"
1212

1313
lifecycle {
1414
ignore_changes = [

vars.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ variable "log_exclude_at_match" {
6363
default = "$x^" # <- never matches anything
6464
}
6565

66-
variable "dd_forwarer_template_version" {
66+
variable "dd_forwarder_template_version" {
6767
description = "Sets Datadog Forwarder version to use"
68-
type = string
69-
default = "3.13.0"
68+
type = string
69+
default = "3.13.0"
7070
}

0 commit comments

Comments
 (0)