<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Maajidh Sabeel A</title>
    <description>The latest articles on DEV Community by Maajidh Sabeel A (@maajidh_sabeel).</description>
    <link>https://dev.to/maajidh_sabeel</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3340892%2F67da804e-ab0e-4012-a15a-a441ca4f8638.png</url>
      <title>DEV Community: Maajidh Sabeel A</title>
      <link>https://dev.to/maajidh_sabeel</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/maajidh_sabeel"/>
    <language>en</language>
    <item>
      <title>Kubernetes 1.35 “Timbernetes” — What’s New &amp; Why It Matters (December 2025)</title>
      <dc:creator>Maajidh Sabeel A</dc:creator>
      <pubDate>Sun, 28 Dec 2025 07:04:12 +0000</pubDate>
      <link>https://dev.to/maajidh_sabeel/kubernetes-135-timbernetes-whats-new-why-it-matters-december-2025-3hmk</link>
      <guid>https://dev.to/maajidh_sabeel/kubernetes-135-timbernetes-whats-new-why-it-matters-december-2025-3hmk</guid>
      <description>&lt;p&gt;&lt;strong&gt;💡 Introduction&lt;/strong&gt;&lt;br&gt;
The Kubernetes project, stewarded by the Cloud Native Computing Foundation (CNCF), has just released Kubernetes 1.35, codenamed “Timbernetes: The World Tree Release.” This is one of the most exciting releases of the year with 60 enhancements spanning Stable (production-ready), Beta, and Alpha features. Kubernetes&lt;/p&gt;

&lt;p&gt;In this post, we’ll break down the most important, real-world features in a way that both beginners and experienced practitioners can understand.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🌟 What Kubernetes 1.35 Brings&lt;/strong&gt;&lt;br&gt;
This release includes several innovations that improve productivity, performance, and developer experience in Kubernetes clusters.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅ 1. In-Place Pod Resource Updates (Stable)&lt;/strong&gt;&lt;br&gt;
Previously, if you wanted to change the CPU or memory of a running Pod, you had to delete it and recreate it — often causing downtime.&lt;/p&gt;

&lt;p&gt;In Kubernetes 1.35, you can now resize Pod resources without restarting them.&lt;/p&gt;

&lt;p&gt;This is a big deal because:&lt;/p&gt;

&lt;p&gt;✔ Workloads (e.g., stateful apps, databases, batch jobs) can scale vertically without restarts.&lt;br&gt;
✔ No more manual re-creations or temporary outages during updates.&lt;br&gt;
✔ This reduces maintenance windows and improves reliability.&lt;/p&gt;

&lt;p&gt;This change graduated to General Availability (GA) in this release — meaning it’s ready for production use.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔐 2. Native Pod Certificates (Beta)&lt;/strong&gt;&lt;br&gt;
Managing certificates for workload identity — especially for secure mTLS communication — used to require external tools like cert-manager. Kubernetes 1.35 introduces native Pod certificates support:&lt;/p&gt;

&lt;p&gt;✔ Certificates are automatically generated and rotated.&lt;br&gt;
✔ Works without sidecars or manual secret creation.&lt;br&gt;
✔ Simplifies zero-trust security and service mesh integrations.&lt;/p&gt;

&lt;p&gt;This enhancement reduces operational overhead and strengthens security by default.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🧠 3. Smarter Scheduling with Node Declared Features (Alpha)&lt;/strong&gt;&lt;br&gt;
When you upgrade your Kubernetes cluster, sometimes the control plane gets new features before the worker nodes do.&lt;br&gt;
This can cause a Pod to be scheduled on a node that doesn’t actually support what it needs.&lt;/p&gt;

&lt;p&gt;In v1.35, nodes can announce what features they support using a new status field — and the scheduler uses that information to make better decisions.&lt;/p&gt;

&lt;p&gt;This is currently in Alpha, meaning it’s experimental but hints at a more reliable scheduling future.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;📍 4. Improved Traffic Routing (Stable)&lt;/strong&gt;&lt;br&gt;
Kubernetes has improved how Service traffic can be routed:&lt;/p&gt;

&lt;p&gt;✔ A new option, PreferSameNode, prioritizes routing traffic to Pods on the same node (low latency).&lt;br&gt;
✔ The previous PreferClose option is now renamed PreferSameZone for clarity.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔄 5. New Beta &amp;amp; Alpha Features Worth Knowing&lt;/strong&gt;&lt;br&gt;
Beta Features (ready for testing):&lt;br&gt;
Expose node topology via Downward API — Pods can see zone/region info without extra permissions.&lt;br&gt;
Native storage version migration — simplifies CRD evolution.&lt;br&gt;
Support for user namespaces in Pods — stronger isolation and security.&lt;br&gt;
Configurable credential plugin settings in kubectl.&lt;br&gt;
Alpha Features (future innovations):&lt;br&gt;
Gang scheduling — schedule related Pods together for batch/AI workloads.&lt;br&gt;
Watch-based route reconciliation — event-driven updates to cloud provider routes.&lt;br&gt;
Extended toleration operators — smarter node matching based on policies.&lt;br&gt;
These features show Kubernetes is expanding beyond simple orchestration into advanced use cases.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;⚠️ Deprecations &amp;amp; Removals&lt;/strong&gt;&lt;br&gt;
Some legacy features are being phased out to make the platform cleaner and more secure. Always check the official release notes before upgrading your cluster.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🧠 Why This Matters in Real Life&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here’s how these changes help:&lt;br&gt;
&lt;strong&gt;✨ Developers &amp;amp; DevOps:&lt;/strong&gt;&lt;br&gt;
Fewer pod restarts = less downtime&lt;br&gt;
Better scaling workflows&lt;br&gt;
Stronger workload security with less manual management&lt;br&gt;
&lt;strong&gt;📊 Platform Teams:&lt;/strong&gt;&lt;br&gt;
More observability into cluster scheduling&lt;br&gt;
Easier upgrade paths&lt;br&gt;
Cleaner, future-proof API usage&lt;br&gt;
&lt;strong&gt;🚀 Cloud Native Projects:&lt;/strong&gt;&lt;br&gt;
Easier adoption of service meshes and zero-trust&lt;br&gt;
Better performance and latency control&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;📌 Conclusion&lt;/strong&gt;&lt;br&gt;
Kubernetes 1.35 “Timbernetes” is one of the most impactful releases in 2025 — combining stability, usability, and forward-looking features.&lt;/p&gt;

&lt;p&gt;Whether you’re running production clusters or learning Kubernetes fundamentals, this release brings tangible improvements you can use today.&lt;/p&gt;

&lt;p&gt;👉 Start testing these features in your staging clusters and explore their impact on your applications!&lt;/p&gt;

</description>
      <category>kubernetes</category>
      <category>cloudnative</category>
      <category>devops</category>
      <category>containers</category>
    </item>
    <item>
      <title>💸 AWS Bill Shock: Why It Happens and How to Prevent It</title>
      <dc:creator>Maajidh Sabeel A</dc:creator>
      <pubDate>Tue, 19 Aug 2025 15:39:24 +0000</pubDate>
      <link>https://dev.to/maajidh_sabeel/aws-bill-shock-why-it-happens-and-how-to-prevent-it-cdg</link>
      <guid>https://dev.to/maajidh_sabeel/aws-bill-shock-why-it-happens-and-how-to-prevent-it-cdg</guid>
      <description>&lt;p&gt;If you’ve ever opened your AWS bill and felt your heart skip a beat, you’re not alone.&lt;br&gt;
“Bill Shock” is one of the most common surprises in cloud computing — and it’s not because AWS is trying to trick you. It usually happens because of how on-demand resources, scaling, and misconfigurations work in the cloud.&lt;/p&gt;

&lt;p&gt;In this post, let’s break down:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Why AWS bill shock happens&lt;/li&gt;
&lt;li&gt;Real-world scenarios where costs explode&lt;/li&gt;
&lt;li&gt;AWS-native tools to prevent it&lt;/li&gt;
&lt;li&gt;Practical tips I’ve learned as a Cloud/DevOps engineer&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;⚠️ Why AWS Bill Shock Happens&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Unlike traditional data centers, AWS runs on pay-as-you-go pricing. That’s amazing for flexibility, but it also means:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Forgetting to stop resources&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A test EC2 instance running 24/7&lt;/li&gt;
&lt;li&gt;A GPU instance (like p3.2xlarge) left idle&lt;/li&gt;
&lt;li&gt;RDS databases not stopped after testing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Data transfer costs&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Free inbound, but outbound traffic costs money.&lt;/li&gt;
&lt;li&gt;Example: Moving TBs of data out of AWS or across regions.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Auto-scaling surprises&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Auto Scaling Groups or Kubernetes clusters that spin up more nodes than expected.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*&lt;em&gt;Third-party services&lt;br&gt;
*&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Marketplace AMIs or services that look free but actually have hourly charges.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Storage creep&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Old EBS volumes, snapshots, or S3 buckets you forgot about.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;📖 Real-World Scenarios&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here are real situations I’ve seen in AWS projects:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Idle Development Cluster: A team spun up an EKS cluster for testing and forgot to shut it down. Two weeks later, the bill crossed $3,000.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Data Transfer Surprise: A company migrated logs to S3 but also pulled them daily into another region. The cross-region data transfer bill was higher than the EC2 costs.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Unused Snapshots: Multiple EBS snapshots were left running for years, quietly adding hundreds of dollars to the monthly bill.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;🛠️ AWS Tools to Prevent Bill Shock&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Thankfully, AWS gives us several tools to keep costs under control:&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;AWS Cost Explorer&lt;br&gt;
*&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Visualize spending trends.&lt;/li&gt;
&lt;li&gt;Identify which service or region is driving costs.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;AWS Budgets&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Set custom cost thresholds.&lt;/li&gt;
&lt;li&gt;Get email/SNS alerts when you cross them.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;AWS Cost Anomaly Detection&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Uses ML to spot unusual spending patterns.&lt;/li&gt;
&lt;li&gt;Example: If Lambda costs suddenly spike, you’ll get notified.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*&lt;em&gt;Trusted Advisor&lt;br&gt;
*&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Gives cost optimization recommendations.&lt;/li&gt;
&lt;li&gt;Flags underutilized resources like idle EC2 instances.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;AWS Free Tier Alerts&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Helps beginners avoid accidentally going over the free tier limits.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;✅ My Practical Tips (From Experience)&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Always tag resources (Environment=Dev/Test/Prod).&lt;/li&gt;
&lt;li&gt;→ Makes it easy to track and clean up unused resources.&lt;/li&gt;
&lt;li&gt;Use termination protection for important instances, but also set auto-stop schedules for dev/test EC2s.&lt;/li&gt;
&lt;li&gt;Enable Budgets + Anomaly Detection on Day 1 — don’t wait for the first big bill.&lt;/li&gt;
&lt;li&gt;Regular cleanup days: Once a month, review old S3 buckets, EBS volumes, and snapshots.&lt;/li&gt;
&lt;li&gt;Monitor data transfer — it’s the silent cost killer in many architectures.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;🚀 Closing Thoughts&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AWS gives us amazing flexibility, but that flexibility comes with responsibility.&lt;/li&gt;
&lt;li&gt;Bill shock isn’t an AWS problem — it’s a cloud operations challenge. By using the right mix of AWS tools and good practices, you can prevent nasty surprises and build cloud architectures that are both scalable and cost-efficient.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;👉 Next time you launch a resource in AWS, remember: “It’s easy to spin up, but costs spin up even faster if you’re not careful.”&lt;/p&gt;




&lt;h2&gt;
  
  
  📌Originally published on &lt;a href="https://medium.com/@maajidh.sabeel/aws-bill-shock-why-it-happens-and-how-to-prevent-it-839fd5b547bf" rel="noopener noreferrer"&gt;Medium&lt;/a&gt;.
&lt;/h2&gt;

</description>
      <category>aws</category>
      <category>devops</category>
      <category>beginners</category>
      <category>learning</category>
    </item>
    <item>
      <title>Why AWS AI Services Matter to Cloud Engineers Today</title>
      <dc:creator>Maajidh Sabeel A</dc:creator>
      <pubDate>Sun, 27 Jul 2025 16:20:20 +0000</pubDate>
      <link>https://dev.to/maajidh_sabeel/why-aws-ai-services-matter-to-cloud-engineers-today-fin</link>
      <guid>https://dev.to/maajidh_sabeel/why-aws-ai-services-matter-to-cloud-engineers-today-fin</guid>
      <description>&lt;p&gt;Not too long ago, my daily focus as a Cloud Engineer was all about provisioning infrastructure, optimizing deployments, setting up monitoring, and ensuring everything ran like clockwork.&lt;/p&gt;

&lt;p&gt;But something has shifted.&lt;/p&gt;

&lt;p&gt;The conversations around me—at work, online, and in the cloud community—started revolving around something bigger: AI.&lt;/p&gt;

&lt;p&gt;Everyone’s talking about it.&lt;br&gt;
Companies are asking, “How do we make our systems smarter?”&lt;br&gt;
Engineers are wondering, “Where do I even start?”&lt;/p&gt;

&lt;p&gt;And that got me thinking.&lt;/p&gt;

&lt;p&gt;☁️ From Infrastructure to Intelligence&lt;br&gt;
We’re already comfortable with building and scaling infrastructure. But what if we could also give it the ability to see, hear, understand, and even predict?&lt;/p&gt;

&lt;p&gt;That’s exactly what AWS AI services are making possible—without needing a PhD in machine learning.&lt;/p&gt;

&lt;p&gt;Here are a few that caught my attention:&lt;/p&gt;

&lt;p&gt;🔍 Amazon Rekognition – Analyze images and videos to detect faces, objects, unsafe content, and more.&lt;/p&gt;

&lt;p&gt;🧠 Amazon Comprehend – Understand natural language, extract key phrases, and even detect sentiment.&lt;/p&gt;

&lt;p&gt;🗣️ Amazon Polly – Turn text into lifelike speech (yes, you can give your app a voice).&lt;/p&gt;

&lt;p&gt;📜 Amazon Transcribe – Convert speech into accurate, readable text (useful for transcripts, call analytics, and more).&lt;/p&gt;

&lt;p&gt;🚀 Amazon SageMaker – For when you're ready to build, train, and deploy your own machine learning models at scale.&lt;/p&gt;

&lt;p&gt;These aren’t just “cool demos”—they're production-ready, fully managed services that cloud engineers like us can plug directly into our existing workflows.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔧 Why Should a Cloud Engineer Care?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here’s what I’ve realized:&lt;/p&gt;

&lt;p&gt;Smart automation is becoming just as important as scalable architecture&lt;/p&gt;

&lt;p&gt;Monitoring, alerts, chatbots, ticket routing—all have room for intelligent workflows&lt;/p&gt;

&lt;p&gt;Many companies now expect infrastructure to be AI-ready by design&lt;/p&gt;

&lt;p&gt;Whether you're deploying web apps or managing enterprise workloads, being AI-aware gives us an edge.&lt;/p&gt;

&lt;p&gt;We’re already good at solving problems with code. Now we can solve bigger problems with smarter tools.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🛠️ How I’m Getting Started&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;My goal isn’t to become a data scientist overnight.&lt;/p&gt;

&lt;p&gt;Instead, I’m learning by doing:&lt;/p&gt;

&lt;p&gt;🧪 Running small experiments with Amazon Comprehend to analyze text logs&lt;/p&gt;

&lt;p&gt;🎞️ Trying out Rekognition to auto-label images stored in S3&lt;/p&gt;

&lt;p&gt;🎤 Using Polly to give voice to a web app I deployed&lt;/p&gt;

&lt;p&gt;🧱 Looking into how SageMaker can fit into my DevOps CI/CD pipelines&lt;/p&gt;

&lt;p&gt;I’m keeping it lightweight, practical, and fun. No deep math—just curiosity, use cases, and cloud tools.&lt;/p&gt;

&lt;p&gt;And as I learn, I’ll share.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;💬 Final Thoughts&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;AI isn’t coming—it’s already here. And the best part? AWS has made it approachable for cloud engineers like us.&lt;/p&gt;

&lt;p&gt;You don’t have to be a machine learning expert. You just need a builder’s mindset—and you already have that.&lt;/p&gt;

&lt;p&gt;So here’s to the next step in our cloud journey: building smarter, not just faster.&lt;/p&gt;

&lt;p&gt;Let’s explore it together.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🤝 Let’s Connect&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you’re also exploring AWS AI or have ideas on how to apply it in real-world projects, I’d love to hear from you.&lt;/p&gt;

&lt;p&gt;📩 Drop your thoughts in the comments&lt;br&gt;
🔗 Connect with me on LinkedIn&lt;br&gt;
✍️ Follow me on Medium for more real-world AWS + DevOps stories&lt;/p&gt;

&lt;p&gt;Originally published on Medium: &lt;a href="https://medium.com/@maajidh.sabeel/why-aws-ai-services-matter-to-cloud-engineers-today-05bdfd2d2ec9" rel="noopener noreferrer"&gt;Why AWS AI Services Matter to Cloud Engineers Today&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>ai</category>
      <category>machinelearning</category>
      <category>cloud</category>
    </item>
    <item>
      <title>🧠 What I Wish I Knew Before Working with AWS From a Cloud Engineer's Desk</title>
      <dc:creator>Maajidh Sabeel A</dc:creator>
      <pubDate>Sat, 26 Jul 2025 15:51:40 +0000</pubDate>
      <link>https://dev.to/maajidh_sabeel/what-i-wish-i-knew-before-working-with-awsfrom-a-cloud-engineers-desk-1372</link>
      <guid>https://dev.to/maajidh_sabeel/what-i-wish-i-knew-before-working-with-awsfrom-a-cloud-engineers-desk-1372</guid>
      <description>&lt;p&gt;When I started working with AWS, I thought I just needed to learn EC2, S3, and maybe Lambda. But here's the truth: AWS is not just a cloud platform - it's a mindset shift.&lt;/p&gt;

&lt;p&gt;Looking back, there are things I really wish I had known earlier - not just technical concepts, but how to approach AWS smartly, avoid burnout, and think like an engineer.&lt;/p&gt;

&lt;p&gt;Here are the top things I learned the hard way - so you don't have to.&lt;/p&gt;

&lt;p&gt;☁️ 1. AWS Isn't Hard - It's Huge&lt;br&gt;
AWS has 200+ services. You're not supposed to master all of them.&lt;/p&gt;

&lt;p&gt;🔍 What I do now:&lt;br&gt;
 I focus on the core services that matter for my projects. For me, that includes EC2, IAM, VPC, S3, Lambda, CloudWatch, and Terraform. Everything else is optional until needed.&lt;/p&gt;

&lt;p&gt;👉 Tip: Start with projects, not certifications. Real-world scenarios teach better than multiple-choice questions.&lt;/p&gt;

&lt;p&gt;🔒 2. IAM is the Heart of Everything&lt;br&gt;
You can't do anything in AWS without Identity and Access Management (IAM). I ignored it at first - then spent hours debugging permissions and policy issues.&lt;/p&gt;

&lt;p&gt;🔍 What I do now:&lt;br&gt;
 I treat IAM as part of security and DevOps, not just configuration. I version control IAM policies and follow the principle of least privilege.&lt;/p&gt;

&lt;p&gt;👉 Tip: Learn how IAM roles, policies, and trust relationships work. This knowledge will save you countless hours.&lt;/p&gt;

&lt;p&gt;🔁 3. Repetition Builds Intuition&lt;/p&gt;

&lt;p&gt;You don't become good at AWS by watching tutorials - you get there by:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Launching EC2s (and breaking them)&lt;/li&gt;
&lt;li&gt;Writing broken CloudFormation or Terraform scripts&lt;/li&gt;
&lt;li&gt;Debugging VPC misconfigurations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🔍 What I do now:&lt;/p&gt;

&lt;p&gt; I build labs, write Infrastructure as Code, and break things intentionally - because fixing them is where the learning happens.&lt;/p&gt;

&lt;p&gt;👉 Tip: Deploy a static website using S3 + CloudFront + Route 53 + ACM. It's a great exercise to understand how AWS services work together.&lt;/p&gt;

&lt;p&gt;⚙️ 4. DevOps and AWS Go Hand in Hand&lt;/p&gt;

&lt;p&gt;You don't "do DevOps" after AWS - you do DevOps with AWS.&lt;br&gt;
Whether it's CI/CD, monitoring, auto-healing infrastructure, or IaC - AWS offers services designed for a DevOps mindset.&lt;/p&gt;

&lt;p&gt;🔍 What I do now:&lt;br&gt;
 I use Terraform, CodePipeline, CloudWatch, and Lambda to automate and optimize cloud operations. DevOps isn't just tools - it's how you think and build.&lt;/p&gt;

&lt;p&gt;👉 Tip: Think in pipelines and systems, not manual steps.&lt;/p&gt;

&lt;p&gt;🌍 5. Multi-Cloud is Real - But AWS is Still King&lt;/p&gt;

&lt;p&gt;Yes, I explore Azure and GCP. But for now, AWS still leads, especially in infrastructure flexibility, community support, and breadth of services.&lt;/p&gt;

&lt;p&gt;🔍 What I do now:&lt;br&gt;
 I stay strong in AWS, but experiment across other clouds to keep my perspective sharp.&lt;/p&gt;

&lt;p&gt;👉 Tip: Be cloud-agnostic in design - but deep in one provider.&lt;/p&gt;

&lt;p&gt;🎯 Final Thoughts: Cloud is a Career, Not a Checklist&lt;/p&gt;

&lt;p&gt;AWS has taught me more than just tech - it's taught me how to learn better, build smarter, and think long-term.&lt;/p&gt;

&lt;p&gt;If you're just starting out, don't be overwhelmed. Pick one project, go deep, and share what you learn.&lt;/p&gt;

&lt;p&gt;That's why I'm writing this - and why I'll continue sharing my journey.&lt;/p&gt;




&lt;p&gt;📌 &lt;em&gt;Originally published on Medium: &lt;a href="https://aws.plainenglish.io/what-i-wish-i-knew-before-working-with-aws-58a3c4525cbe" rel="noopener noreferrer"&gt;From a Cloud Engineer’s Desk&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;***&lt;em&gt;👋 Let's Stay Connected&lt;br&gt;
*&lt;/em&gt;💬 Curious about AWS, DevOps, or cloud careers?&lt;br&gt;
 📬 Reach out - I'm always open to connect!&lt;br&gt;
 🔗 &lt;a href="https://medium.com/@maajidh.sabeel" rel="noopener noreferrer"&gt;Follow me on Medium&lt;/a&gt; | &lt;a href="https://www.linkedin.com/in/maajidh-sabeel" rel="noopener noreferrer"&gt;Connect on LinkedIn&lt;/a&gt;&lt;br&gt;
Let's build, learn, and grow together - one cloud story at a time. �&lt;br&gt;
**&lt;/p&gt;




</description>
      <category>aws</category>
      <category>devops</category>
      <category>cloud</category>
    </item>
  </channel>
</rss>
