We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/madlinux768/managed-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
outputs.tf•850 B
output "ecr_repository_url" {
description = "URL of the ECR repository"
value = aws_ecr_repository.main.repository_url
}
output "ecs_cluster_name" {
description = "Name of the ECS cluster"
value = aws_ecs_cluster.main.name
}
output "ecs_cluster_arn" {
description = "ARN of the ECS cluster"
value = aws_ecs_cluster.main.arn
}
output "ecs_service_name" {
description = "Name of the ECS service"
value = aws_ecs_service.main.name
}
output "cloudwatch_log_group" {
description = "CloudWatch log group name"
value = aws_cloudwatch_log_group.ecs.name
}
output "task_execution_role_arn" {
description = "ARN of the task execution role"
value = aws_iam_role.ecs_task_execution.arn
}
output "task_role_arn" {
description = "ARN of the task role"
value = aws_iam_role.ecs_task.arn
}