graph TB
subgraph VPC[VPC 10.0.0.0/16]
subgraph PublicSubnets[Public Subnets]
PS1[Public Subnet 1 10.0.1.0/24 us-east-1a]
PS2[Public Subnet 2 10.0.2.0/24 us-east-1b]
end
subgraph ALB[Application Load Balancer]
LB[ALB Port 80]
TG1[Target Group: auth-tg]
TG2[Target Group: ecommerce-tg]
end
subgraph ECS[ECS Cluster]
subgraph AuthService[Auth Service]
AS[Fargate Tasks auth-container nginx:alpine]
end
subgraph EcommerceService[Ecommerce Service]
ES[Fargate Tasks ecommerce-container nginx:alpine]
end
end
subgraph SecurityGroups[Security Groups]
ALBSG[ALB SG Inbound: 80 Source: 0.0.0.0/0]
FSG[Fargate SG Inbound: 80 Source: ALB SG]
end
end
Internet((Internet)) --> IGW[Internet Gateway]
IGW --> LB
LB --> |/auth/*| TG1
LB --> |/ecommerce/*| TG2
TG1 --> AS
TG2 --> ES
ALBSG --> FSG
PS1 ---- AS & ES
PS2 ---- AS & ES
style VPC fill:#f5f5f5,stroke:#333,stroke-width:2px
style PublicSubnets fill:#e1f5fe,stroke:#333,stroke-width:1px
style ALB fill:#fff3e0,stroke:#333,stroke-width:1px
style ECS fill:#e8f5e9,stroke:#333,stroke-width:1px
style SecurityGroups fill:#fce4ec,stroke:#333,stroke-width:1px
graph LR
B[environments]
C[modules]
B --> D[dev]
B --> E[prod]
D --> D1[main.tf]
D --> D2[variables.tf]
D --> D3[terraform.tfvars]
D --> D4[provider.tf]
D --> D5[backend.tf]
D --> D6[outputs.tf]
E --> E1[main.tf]
E --> E2[variables.tf]
E --> E3[terraform.tfvars]
E --> E4[provider.tf]
E --> E5[backend.tf]
E --> E6[outputs.tf]
C --> F[ecs]
C --> G[networking]
C --> H[rds]
C --> I[security]
F --> F1[main.tf]
F --> F2[variables.tf]
F --> F3[outputs.tf]
F --> F4[ecs-cluster.tf]
F --> F5[ecs-service-product.tf]
F --> F6[ecs-service-order.tf]
F --> F7[task-definitions.tf]
G --> G1[main.tf]
G --> G2[variables.tf]
G --> G3[outputs.tf]
G --> G4[vpc.tf]
G --> G5[subnets.tf]
G --> G6[security-groups.tf]
G --> G7[alb.tf]
H --> H1[main.tf]
H --> H2[variables.tf]
H --> H3[outputs.tf]
H --> H4[rds-product.tf]
H --> H5[rds-order.tf]
I --> I1[main.tf]
I --> I2[variables.tf]
I --> I3[outputs.tf]
I --> I4[iam-roles.tf]
I --> I5[kms.tf]
Simple Ecommerce
1. A VPC with two public subnets across different availability zones
2. An Application Load Balancer that routes traffic based on paths:
- `/auth/*` routes to the auth service
- `/ecommerce/*` routes to the ecommerce service
3. Two ECS Fargate services running nginx containers
4. Security groups controlling traffic flow:
- ALB security group allowing inbound HTTP traffic from internet
- Fargate security group allowing traffic only from the ALB
5. Internet Gateway providing internet connectivity