<?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: Vishhhh....</title>
    <description>The latest articles on DEV Community by Vishhhh.... (@vishanth_c084a7962720ba3c).</description>
    <link>https://dev.to/vishanth_c084a7962720ba3c</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4125455%2Fe6d1a1f0-13ef-4867-bf98-b47d19f9e53d.jpg</url>
      <title>DEV Community: Vishhhh....</title>
      <link>https://dev.to/vishanth_c084a7962720ba3c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vishanth_c084a7962720ba3c"/>
    <language>en</language>
    <item>
      <title>V for Vishanth, V for VPC: My First AWS Deep Dive</title>
      <dc:creator>Vishhhh....</dc:creator>
      <pubDate>Wed, 16 Sep 2026 04:04:16 +0000</pubDate>
      <link>https://dev.to/vishanth_c084a7962720ba3c/v-for-vishanth-v-for-vpc-my-first-aws-deep-dive-4mol</link>
      <guid>https://dev.to/vishanth_c084a7962720ba3c/v-for-vishanth-v-for-vpc-my-first-aws-deep-dive-4mol</guid>
      <description>&lt;p&gt;&lt;strong&gt;V for Vishanth, V for VPC: My First AWS Deep Dive&lt;/strong&gt; ☁️&lt;/p&gt;

&lt;p&gt;Introduction&lt;/p&gt;

&lt;p&gt;Cloud computing allows us to run applications and store data without managing physical servers. But cloud resources also need a secure and organized network. &lt;strong&gt;Amazon VPC (Virtual Private Cloud)&lt;/strong&gt; provides this networking environment in AWS.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Amazon VPC?
&lt;/h2&gt;

&lt;p&gt;Amazon VPC is a &lt;strong&gt;logically isolated virtual network&lt;/strong&gt; in AWS where users can launch and manage cloud resources securely. It allows us to control IP addresses, subnets, routing, and network access.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why was it created?
&lt;/h2&gt;

&lt;p&gt;VPC was created to give users &lt;strong&gt;greater control, security, and isolation&lt;/strong&gt; over their AWS resources.&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;p&gt;A VPC can be divided into public and private subnets.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;         INTERNET
             │
             ▼
    ┌────────────────┐
    │ Internet       │
    │ Gateway        │
    └───────┬────────┘
            │
    ┌───────▼────────┐
    │    AWS VPC     │
    ├────────────────┤
    │ Public Subnet  │
    │   Web Server   │
    ├────────────────┤
    │ Private Subnet │
    │    Database    │
    └────────────────┘
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;The public subnet can contain a web server, while sensitive resources such as databases can stay in a private subnet.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Subnets&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;VPC can be divided into smaller networks called subnets to organize resources.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Route Tables&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Route tables control where network traffic should go.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Security Groups&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Security groups act like virtual firewalls and control incoming and outgoing traffic.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;VPC Flow Logs&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;They help monitor and troubleshoot network traffic.&lt;/p&gt;

&lt;h2&gt;
  
  
  Use Case 🎓
&lt;/h2&gt;

&lt;p&gt;A college could use VPC to host a &lt;strong&gt;Student Project Portal&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Students&lt;br&gt;
   ↓&lt;br&gt;
Web Server&lt;br&gt;
   ↓&lt;br&gt;
Private Database&lt;/p&gt;

&lt;p&gt;The web server can be accessible through the internet, while the student database remains protected inside a private subnet.&lt;/p&gt;

&lt;h2&gt;
  
  
  Simple Example
&lt;/h2&gt;

&lt;p&gt;For a student project, we could create:&lt;/p&gt;

&lt;p&gt;VPC: 10.0.0.0/16&lt;/p&gt;

&lt;p&gt;Public Subnet:  10.0.1.0/24&lt;br&gt;
Private Subnet: 10.0.2.0/24&lt;/p&gt;

&lt;p&gt;HTTP  → Port 80&lt;br&gt;
HTTPS → Port 443&lt;/p&gt;

&lt;p&gt;This provides a basic and controlled network for hosting an application.&lt;/p&gt;

&lt;h2&gt;
  
  
  Advantages
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Security:&lt;/strong&gt; Provides network isolation and traffic control.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Control:&lt;/strong&gt; Users can configure IP ranges, subnets, and routing.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scalability:&lt;/strong&gt; Suitable for small projects and large applications.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Integration:&lt;/strong&gt; Works with services such as EC2 and RDS.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Limitations / Things to Consider
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;VPC networking can be confusing for beginners.&lt;/li&gt;
&lt;li&gt;Incorrect security settings can create security risks.&lt;/li&gt;
&lt;li&gt;Advanced components such as NAT gateways can add cost.&lt;/li&gt;
&lt;li&gt;IP address ranges need proper planning.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Amazon VPC is an important AWS service for building &lt;strong&gt;secure and organized cloud networks&lt;/strong&gt;. It gives developers control over how their applications communicate and protects private resources.&lt;/p&gt;

&lt;p&gt;For me, it's simple:&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;V for Vishanth. V for VPC.&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;My first step into AWS networking! 🚀&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>beginners</category>
      <category>cloud</category>
      <category>networking</category>
    </item>
    <item>
      <title># My AWS Day 1 Journey ☁️🚀</title>
      <dc:creator>Vishhhh....</dc:creator>
      <pubDate>Tue, 15 Sep 2026 06:44:19 +0000</pubDate>
      <link>https://dev.to/vishanth_c084a7962720ba3c/-my-aws-day-1-journey-1740</link>
      <guid>https://dev.to/vishanth_c084a7962720ba3c/-my-aws-day-1-journey-1740</guid>
      <description>&lt;p&gt;Today, I started my AWS learning journey and explored some important concepts of cloud computing through hands-on activities.&lt;/p&gt;

&lt;p&gt;One of the most interesting concepts was &lt;strong&gt;“Pizza as a Service 2.0” 🍕&lt;/strong&gt;, which made understanding cloud service models much easier. From making pizza at home to having a complete party managed for us, the responsibility gradually shifts from the user to the service provider:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;On-Premise → IaaS → PaaS → SaaS → AIaaS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I also learned about &lt;strong&gt;AWS Pay-as-You-Go&lt;/strong&gt;, where we pay based on the resources we actually use.&lt;/p&gt;

&lt;h3&gt;
  
  
  ☁️ AWS Concepts Covered
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;AWS Root User &amp;amp; IAM User&lt;/li&gt;
&lt;li&gt;AWS Regions&lt;/li&gt;
&lt;li&gt;Amazon S3&lt;/li&gt;
&lt;li&gt;Amazon EC2&lt;/li&gt;
&lt;li&gt;Networking &amp;amp; Security&lt;/li&gt;
&lt;li&gt;Amazon CloudFront&lt;/li&gt;
&lt;li&gt;AWS Cloud Quest&lt;/li&gt;
&lt;li&gt;AWS Cloud Practitioner &amp;amp; AI Practitioner learning paths&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🪣 Hands-on with Amazon S3
&lt;/h3&gt;

&lt;p&gt;As part of the Day 1 task, I created an &lt;strong&gt;S3 bucket and deployed my portfolio website&lt;/strong&gt; using static website hosting.&lt;/p&gt;

&lt;p&gt;The process included:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Creating an S3 bucket&lt;/li&gt;
&lt;li&gt;Uploading portfolio files&lt;/li&gt;
&lt;li&gt;Configuring static website hosting&lt;/li&gt;
&lt;li&gt;Understanding bucket policies and public access&lt;/li&gt;
&lt;li&gt;Exploring CloudFront&lt;/li&gt;
&lt;li&gt;Connecting S3 with CloudFront&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;We also had a fun &lt;strong&gt;Rhyming Game Contest 🎮&lt;/strong&gt; and learned about documenting our work through &lt;strong&gt;GitHub Pull Requests, LinkedIn, and DEV.to&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;One important takeaway from today:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;CGPA can matter, but practical skills, projects, consistency, and the ability to build and learn matter too.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Day 1 was all about understanding the cloud foundation and getting hands-on with AWS. Excited to continue this journey and build more real-world projects! 🚀&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;#AWS #CloudComputing #AWSCloud #AmazonS3 #CloudFront #IaaS #PaaS #SaaS #DevOps #LearningJourney #AWSCommunity #CloudJourney&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>beginners</category>
      <category>cloud</category>
      <category>learning</category>
    </item>
  </channel>
</rss>
