feat: Add tags for CloudWatch log group only (#2841)

* feature: added cloudwatch log group tags input

* fix: terraform docs run
This commit is contained in:
BlacksmithJoe
2023-12-11 15:54:19 +01:00
committed by GitHub
parent ec454c51cb
commit 4c5c97b5d4
3 changed files with 8 additions and 0 deletions

View File

@@ -112,6 +112,7 @@ resource "aws_cloudwatch_log_group" "this" {
tags = merge(
var.tags,
var.cloudwatch_log_group_tags,
{ Name = "/aws/eks/${var.cluster_name}/cluster" }
)
}