Skip to content

Commit

Permalink
added cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
kunduso committed Mar 26, 2024
1 parent 990da76 commit c74153c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions infra/cluster.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
resource "aws_ecs_cluster" "app_cluster" {
name = var.name
configuration {
execute_command_configuration {
logging = "OVERRIDE"
}
}
service_connect_defaults {
namespace = aws_service_discovery_http_namespace.namespace.arn
}
setting {
name = "containerInsights"
value = "enabled"
}
}

0 comments on commit c74153c

Please sign in to comment.