Skip to content

Commit

Permalink
chore: Remove tags from the module - let consumers define their own t…
Browse files Browse the repository at this point in the history
…agging scheme (#349)
  • Loading branch information
clint-truss authored Nov 8, 2023
1 parent bde3c16 commit 4a9173e
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down Expand Up @@ -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" {
Expand Down

0 comments on commit 4a9173e

Please sign in to comment.