Skip to content

Instantly share code, notes, and snippets.

@guivin
Created August 21, 2021 10:46
Show Gist options
  • Save guivin/af5cb5b761aca826ab299343fd30c001 to your computer and use it in GitHub Desktop.
Save guivin/af5cb5b761aca826ab299343fd30c001 to your computer and use it in GitHub Desktop.
terraform/modules/aws-ecs/main.tf
resource "aws_ecs_cluster" "default" {
name = local.name
tags = merge({
name = local.name
}, var.tags)
}
resource "aws_cloudwatch_log_group" "default" {
name = local.name
tags = merge({
name = local.name
}, var.tags)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment