🏗️
Deployed by Insights AWS Architect
Your web application is live!
https://test-web-app.jmciver.com
Your three-tier web application stack is ready and waiting for your code. Provisioned by Insights AWS Architect using Terraform.
⚖️
Load Balancer
ALB + HTTPS + Auto Scaling
🖥️
EC2 Instances
Running in private subnets
🗄️
RDS Database
Isolated subnet, encrypted
📦
S3 Assets
Bucket ready for static files
Connect to your instances
Use AWS Systems Manager Session Manager — no SSH keys or bastion host required:
# Find your instance IDs
aws ec2 describe-instances \
--filters "Name=tag:Application,Values=Insights-AWS-Architect" \
--query "Reservations[].Instances[].InstanceId" --output text
# Open a terminal session
aws ssm start-session --target <instance-id>
Deploy your application
Stop the placeholder and start your own application on port 8080:
# Stop placeholder server
sudo systemctl stop nginx
# Deploy your app — it must listen on 0.0.0.0:8080
sudo dnf install -y git nodejs # or python3, java, go...
cd /opt && sudo git clone https://github.com/your-org/your-app
cd your-app && sudo npm start -- --port 8080
Database & outputs
Your RDS endpoint, generated password, and S3 assets bucket are available in the Insights AWS Architect deployments panel — click the ⓘ info icon next to this deployment's name.