We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 586f2a1 + 3e56f74 commit 1c07595Copy full SHA for 1c07595
main.tf
@@ -82,4 +82,6 @@ module "lambda" {
82
logging_system_log_level = var.logging_system_log_level
83
84
event_source_mapping = var.event_source_mapping
85
+ tags = var.tags
86
+ function_tags = var.function_tags
87
}
variables.tf
@@ -445,3 +445,15 @@ variable "cf_distribution_id" {
445
type = string
446
default = null
447
448
+
449
+variable "tags" {
450
+ description = "A map of tags to assign to resources."
451
+ type = map(string)
452
+ default = {}
453
+}
454
455
+variable "function_tags" {
456
+ description = "A map of tags to assign only to the lambda function"
457
458
459
0 commit comments