Skip to content

Commit

Permalink
Merge pull request #259 from silinternational/fix-dashboard-conflict
Browse files Browse the repository at this point in the history
Release 12.8.3 -- add AWS region to dashboard name
  • Loading branch information
briskt authored Sep 9, 2024
2 parents bf04836 + 0689157 commit 7cf16b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion terraform/010-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ module "ecs-service-cloudwatch-dashboard" {
version = "~> 3.0.1"

cluster_name = var.ecs_cluster_name
dashboard_name = "${var.app_name}-${var.app_env}"
dashboard_name = "${var.app_name}-${var.app_env}-${data.aws_region.current.name}"

service_names = [
"${var.idp_name}-db-backup",
Expand All @@ -129,3 +129,4 @@ module "ecs-service-cloudwatch-dashboard" {
]
}

data "aws_region" "current" {}

0 comments on commit 7cf16b5

Please sign in to comment.