From c1505e2f6daa08612c219bf9ad62bd84c023bc0b Mon Sep 17 00:00:00 2001 From: Gennady Saburov Date: Thu, 4 Apr 2019 18:09:13 +0300 Subject: [PATCH] changed a cluster name --- ecs-cluster.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecs-cluster.tf b/ecs-cluster.tf index 36a5168..f70b693 100644 --- a/ecs-cluster.tf +++ b/ecs-cluster.tf @@ -1,6 +1,6 @@ resource "aws_ecs_cluster" "this" { count = "${ var.use_existant_cluster ? 0 : 1 }" - name = "${var.project}-${var.environment}" + name = "${var.project}-${var.environment}-${var.service}" tags = "${merge(local.default_tags, var.tags)}" }