From 4a9173ecb107b5dbee60692faf159d92effbdda3 Mon Sep 17 00:00:00 2001 From: Clint Talbert <86265339+clint-truss@users.noreply.github.com> Date: Wed, 8 Nov 2023 15:16:43 -0800 Subject: [PATCH] chore: Remove tags from the module - let consumers define their own tagging scheme (#349) --- main.tf | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/main.tf b/main.tf index 3d83925..97c2e1b 100644 --- a/main.tf +++ b/main.tf @@ -92,12 +92,6 @@ resource "aws_cloudwatch_log_group" "main" { retention_in_days = var.logs_cloudwatch_retention kms_key_id = var.kms_key_id - - tags = { - Name = "${var.name}-${var.environment}" - Environment = var.environment - Automation = "Terraform" - } } resource "aws_cloudwatch_metric_alarm" "alarm_cpu" { @@ -151,12 +145,6 @@ resource "aws_security_group" "ecs_sg" { name = "ecs-${var.name}-${var.environment}" description = "${var.name}-${var.environment} container security group" vpc_id = var.ecs_vpc_id - - tags = { - Name = "ecs-${var.name}-${var.environment}" - Environment = var.environment - Automation = "Terraform" - } } resource "aws_security_group_rule" "app_ecs_allow_outbound" {