We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 394e309 commit 0d85859Copy full SHA for 0d85859
main.tf
@@ -9,11 +9,13 @@ module "cloudwatch_log_group" {
9
source = "cloudposse/cloudwatch-logs/aws"
10
version = "0.6.6"
11
12
+ enabled = module.this.enabled
13
+
14
iam_role_enabled = false
15
kms_key_arn = var.cloudwatch_logs_kms_key_arn
16
retention_in_days = var.cloudwatch_logs_retention_in_days
- attributes = ["lambda", var.function_name]
- context = module.this.context
17
+ name = "/aws/lambda/${var.function_name}"
18
+ tags = module.this.tags
19
}
20
21
resource "aws_lambda_function" "this" {
0 commit comments