🚀 Zero-Downtime Blue/Green Deployments on AWS with Route 53 Weighted Routing and Terraform
AWS ZERO TO HERO SERIES

Search for a command to run...
Articles tagged with #ec2
AWS ZERO TO HERO SERIES

🛡️ What is a Bastion Host? A bastion host (also known as a jump box) is a public-facing EC2 instance that serves as a secure entry point to access private EC2 instances in a VPC that have no direct internet access. ✅ Prerequisites You have two EC2...

âś… Prerequisites Launch AWS EC2 Ubuntu instance. Domain name: Example: abc.domain.xyz pointed to the EC2 instance's public IP. Open ports in EC2 Security Group: 80 (HTTP) 443 (HTTPS) 22 (SSH) 10000/udp (for video) đź”§ Step 1: Install Requ...

Launch ubuntu instance on aws Install node.js # Download and install nvm: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash # in lieu of restarting the shell \. "$HOME/.nvm/nvm.sh" # Download and install Node.js: nvm ...

Here’s a Python script using boto3 to create an EC2 instance in AWS. Make sure you have AWS credentials configured using aws configure or environment variables. Configure AWS CLI credentials: aws configure Prerequisites: Install boto3: pip insta...

NOTE: Take snapshot of EBS volume before doing any changes to ebs volume Create set of files cd / Execute below command to create 10 text files for i in {1..10}; do sudo touch file$i.txt && echo "This is some text for file$i.txt" | sudo tee file$i.t...
