infra/infra/alpha.tf
2023-01-09 18:21:26 -08:00

19 lines
503 B
HCL

# Alpha houses all of our containerized applications
# Essentially it is a cluster with services that we
# choose to expose to the internet in one form or another
# Alpha cluster definition
###########################
resource "aws_ecs_cluster" "alpha" {
name = "${var.athens_prefix}-athens-alpha"
configuration {
execute_command_configuration {
logging = "OVERRIDE"
log_configuration {
cloud_watch_log_group_name = aws_cloudwatch_log_group.alpha.name
}
}
}
}