Skip to content

Commit 801b0f0

Browse files
author
Kilian
committed
fix: log group name (#2)
1 parent 9d62f9e commit 801b0f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ resource "aws_acm_certificate_validation" "main" {
5151

5252
resource "aws_cloudwatch_log_group" "main" {
5353
count = var.log_config != null ? 1 : 0
54-
name = "/aws/api-gw/${var.identifier}"
54+
name = "${var.identifier}-api-gw"
5555
retention_in_days = try(var.log_config["retention_in_days"], null)
5656

5757
tags = var.tags

0 commit comments

Comments
 (0)