Skip to main content
Glama
terraform-aws.tf654 B
provider "aws" { region = "us-east-1" } variable "environment" { description = "Deployment environment (dev/staging/prod)" default = "dev" } resource "aws_vpc" "main" { cidr_block = "10.0.0.0/16" enable_dns_hostnames = true enable_dns_support = true tags = { Name = "${var.environment}-vpc" } } resource "aws_subnet" "public" { vpc_id = aws_vpc.main.id cidr_block = "10.0.1.0/24" map_public_ip_on_launch = true availability_zone = "us-east-1a" } resource "aws_ecs_cluster" "main" { name = "${var.environment}-cluster" } output "vpc_id" { value = aws_vpc.main.id }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/millsydotdev/Code-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server