You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
289 B
HCL

resource "aws_cloudwatch_log_group" "logs" {
name = var.namespace
retention_in_days = var.log_group_retention_days
}
resource "aws_cloudwatch_log_group" "lambda" {
name = "/aws/lambda/${var.namespace}"
retention_in_days = var.lambda_log_retention_days
}