We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents de1f7c9 + 4eef147 commit 1430a24Copy full SHA for 1430a24
terraform.tf
@@ -26,6 +26,12 @@ variable "nr_infra_logging" {
26
default = true
27
}
28
29
+variable "nr_tags" {
30
+ type = string
31
+ description = "Additional tags added to the logs"
32
+ sensitive = false
33
+}
34
+
35
variable "lambda_archive" {
36
type = string
37
description = "The path to the lambda archive, the lambda will be build here if the build_lambda variable is true."
@@ -187,6 +193,7 @@ resource "aws_lambda_function" "ingestion_function" {
187
193
LICENSE_KEY = var.nr_license_key
188
194
LOGGING_ENABLED = var.nr_logging_enabled ? "True" : "False"
189
195
INFRA_ENABLED = var.nr_infra_logging ? "True" : "False"
196
+ NR_TAGS = var.nr_tags
190
197
191
198
192
199
0 commit comments