From 764aa1ce42f2e4332001d41e3bf9a355c0df3fd0 Mon Sep 17 00:00:00 2001 From: Anthony Gauthier Date: Tue, 3 Oct 2023 15:05:52 -0400 Subject: [PATCH] fix(amp): using name_prefix instead of name for log_group (#60) * fix(amp): using name_prefix instead of name for log_group * chore(tfsec): added ignore for log group CK check --- prometheus.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/prometheus.tf b/prometheus.tf index 4fe5aab..ebaa1a3 100644 --- a/prometheus.tf +++ b/prometheus.tf @@ -1,5 +1,6 @@ +#tfsec:ignore:aws-cloudwatch-log-group-customer-key resource "aws_cloudwatch_log_group" "amp_log_group" { - name = "o11y-amp-default" + name_prefix = "/o11y/amp/" } # TODO: We are currently flowing data through this workspace here, we will eventually want to move everything to the workspace being created by the public module.