graph TD
Client([User / Web Browser]) -->|HTTPS Request| WAF[Web Application Firewall]
subgraph Google Cloud / AWS Environment
WAF -->|Traffic Filtering| LB{Load Balancer}
subgraph Private VPC Network
LB -->|Routes to active containers| Run[Cloud Run / Fargate Containers]
Run -->|Executes| Py(Python Docker Image)
end
subgraph Security & Identity
Py -.->|Requests API Keys| SM[(Secret Manager)]
Py -.->|Authenticates via| IAM[Strict IAM Roles]
end
subgraph Data Tier
Py -->|Private IP connection| DB[(Encrypted SQL Database)]
end
end
classDef default fill:#11111a,stroke:#f97316,stroke-width:2px,color:#fff;
classDef highlight fill:#050505,stroke:#00ffcc,stroke-width:2px,color:#fff;
class Py,Run highlight;