WarpBuild LogoWarpBuild Docs

Architecture

Architecture and security

Architecture

Here are the high level details of the architecture:

Architecture Diagram

Mermaid diagram
graph TD
  Internet((Internet))
  IGW[Internet Gateway]
  VPC[VPC]
  PublicSubnet[Public Subnet]
  PrivateSubnet[Private Subnet]
  EC2[EC2 Instances]
  S3[S3 Bucket]
  S3GW[S3 Gateway Endpoint]
  SG[Security Group]
  NATGW[NAT Gateway<br>Static IP]
  PublicRT[Public Route Table]
  PrivateRT[Private Route Table]
  
  Internet --> IGW
  IGW --> VPC
  VPC --> PublicSubnet
  VPC --> PrivateSubnet
  PublicSubnet --> EC2
  PrivateSubnet --> EC2
  VPC --> S3GW
  S3GW --> S3
  SG -.-> EC2
  NATGW --> Internet
  PrivateSubnet --> NATGW
  PublicRT -.-> PublicSubnet
  PrivateRT -.-> PrivateSubnet

Ensure the recommendations from the Configuration and best practices are followed for secure and robust infrastructure.

Last updated on

On this page