SYsanjay yadavindevopsbysanjay.hashnode.dev·May 23 · 6 min readTerraform with AI: Build AWS Infra (Cursor + MCP)Why Terraform with AI Matters in Modern DevOps Writing Terraform for anything beyond a small setup quickly becomes tedious.Once you start dealing with multiple modules, cross-resource dependencies, an00
SYsanjay yadavindevopsbysanjay.hashnode.dev·May 22 · 4 min readK3s vs Kubernetes (K8s): Performance, Architecture, Use Cases and When to Choose Each K3s and Kubernetes (K8s) are often compared, but they are not direct competitors. They solve different infrastructure problems.K3s can run in under 200MB of RAM, while a standard Kubernetes cluster ca00
SYsanjay yadavindevopsbysanjay.hashnode.dev·May 21 · 13 min readJenkins or GitHub Actions? Deciding the Right CI/CD Tool for Your Workflow Introduction Continuous Integration and Delivery is a key part of any software application. Be it a mobile app, a backend app or a website - everything requires CI/CD to make things easier for everyon00
SYsanjay yadavindevopsbysanjay.hashnode.dev·May 20 · 5 min readManaging Terraform State Locking in S3 Without DynamoDBIntroduction If you’ve worked with Terraform, you’ve probably followed the standard setup: S3 for storing Terraform state DynamoDB for state locking It’s widely recommended, and most teams impleme00
SYsanjay yadavindevopsbysanjay.hashnode.dev·May 19 · 4 min readHow to Avoid GitHub Token Rate Limiting Issues | Complete Guide for DevOps Teams.github/workflows/deploy.yml name: Deploy with GitHub App on: push: branches: [main] .github/workflows/deploy.yml name: Deploy with GitHub App on: push: branches: [main] jobs: deploy: runs-on: ubuntu-00