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•1.01 KiB
output "vpc_id" {
description = "ID of the VPC"
value = var.vpc_id
}
output "private_subnet_ids" {
description = "IDs of private subnets used by ALB and ECS"
value = var.private_subnet_ids
}
output "alb_dns_name" {
description = "DNS name of the internal ALB"
value = aws_lb.main.dns_name
}
output "alb_zone_id" {
description = "Zone ID of the ALB"
value = aws_lb.main.zone_id
}
output "alb_target_group_arn" {
description = "ARN of the ALB target group"
value = aws_lb_target_group.main.arn
}
output "alb_security_group_id" {
description = "Security group ID for ALB"
value = aws_security_group.alb.id
}
output "ecs_security_group_id" {
description = "Security group ID for ECS tasks"
value = aws_security_group.ecs_tasks.id
}
output "nat_gateway_id" {
description = "ID of the NAT Gateway"
value = aws_nat_gateway.main.id
}
output "nat_gateway_public_ip" {
description = "Public IP of the NAT Gateway"
value = aws_eip.nat.public_ip
}