<?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>Forem: NITIN B</title>
    <description>The latest articles on Forem by NITIN B (@nitin_b_839821d8ec281e9c9).</description>
    <link>https://forem.com/nitin_b_839821d8ec281e9c9</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%2F2751026%2F632a94d3-32be-4326-a646-bc5472b4d195.jpg</url>
      <title>Forem: NITIN B</title>
      <link>https://forem.com/nitin_b_839821d8ec281e9c9</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/nitin_b_839821d8ec281e9c9"/>
    <language>en</language>
    <item>
      <title>"🏃‍♂️" Command in Windows</title>
      <dc:creator>NITIN B</dc:creator>
      <pubDate>Wed, 28 May 2025 06:31:03 +0000</pubDate>
      <link>https://forem.com/nitin_b_839821d8ec281e9c9/-command-in-windows-pnf</link>
      <guid>https://forem.com/nitin_b_839821d8ec281e9c9/-command-in-windows-pnf</guid>
      <description>&lt;p&gt;Recently, I was wondering how the RUN in windows works, and i discovered how we can use it by customizing. &lt;/p&gt;

&lt;h2&gt;
  
  
  HOW ?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fluhnh7w1qv0v5i00x7tr.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fluhnh7w1qv0v5i00x7tr.gif" alt="Image description" width="480" height="480"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So lets see how it runs,&lt;/p&gt;

&lt;p&gt;Actually run is a shortcut for running applications or services.&lt;br&gt;
When we type the command or the keyword for the application the os will look into the system variables and finds the path where system32 is located (&lt;code&gt;c:\windows\system32\&lt;/code&gt;) and finds the application and if it exists it runs the application. The system32 basically holds all the commands that can be used in the command prompt and the shortcut to run application.&lt;/p&gt;
&lt;h2&gt;
  
  
  Customized run
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiylzt5hnl92kepqqy6ta.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiylzt5hnl92kepqqy6ta.gif" alt="Image description" width="480" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. By using a executable file:&lt;/strong&gt;&lt;br&gt;
We have a sample.bat. This is a batch file containing,&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;@echo off
echo Hello, %USERNAME%!
echo This is a test script.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This sample.bat file which is stored in &lt;code&gt;c:\user\desktop\scripts&lt;/code&gt;or in any other folder you like. This path of the file should be pasted in the system variables PATH (&lt;code&gt;Settings &amp;gt; about pc &amp;gt; advanced system settings &amp;gt; environment variables &amp;gt; system variables&lt;/code&gt;) by creating a new path paste the file location (&lt;code&gt;c:\user\desktop\scripts&lt;/code&gt;) &lt;/p&gt;

&lt;p&gt;This can be done with any executable files and not just batch files.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2.By using a shortcut:&lt;/strong&gt;&lt;br&gt;
We can run our customized command for applications by creating a shortcut in the system32 folder.&lt;/p&gt;

&lt;p&gt;We can take the text.bat as a shortcut.&lt;br&gt;
We can create a shortcut by right click &amp;gt; new &amp;gt; shortcut and find the file that you need to create a shortcut. &lt;/p&gt;

&lt;p&gt;Now store the shortcut in the system32 folder (&lt;code&gt;c:\windows\system32\&lt;/code&gt;). &lt;/p&gt;

&lt;p&gt;After executing any of these methods you can now able to run the customized run by using the shortcut name or the file name. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5eebl1mutlho7gmn6bjx.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5eebl1mutlho7gmn6bjx.gif" alt="Image description" width="480" height="362"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>computerscience</category>
      <category>learning</category>
    </item>
    <item>
      <title>"How the Internet Really Works — From Your ISP to Submarine Cables"🛜🕸️</title>
      <dc:creator>NITIN B</dc:creator>
      <pubDate>Fri, 02 May 2025 10:07:36 +0000</pubDate>
      <link>https://forem.com/nitin_b_839821d8ec281e9c9/getting-started-with-networking-48d4</link>
      <guid>https://forem.com/nitin_b_839821d8ec281e9c9/getting-started-with-networking-48d4</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;List of topics:&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Internet&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;How does internet works ?&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;ISP&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Submarine cables &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Flow of data &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Internet
&lt;/h2&gt;

&lt;p&gt;It is a group of network that communicate with each other in order to share data between them. They are interconnected with each other via physical cables. They are laid across the globe. &lt;/p&gt;

&lt;h2&gt;
  
  
  How does internet work ?
&lt;/h2&gt;

&lt;p&gt;User must have an ip address in order to exist in a network.&lt;br&gt;
Users pay ISP to get access to data across the globe. When a user requests for a data, it sends request to isp and the isp will redirect to the data centers.&lt;/p&gt;

&lt;h2&gt;
  
  
  ISP
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;ISP - Internet Service Provider&lt;/strong&gt;&lt;br&gt;
They are the provider of internet. They provide access to the internet via which people share data and request for data. &lt;/p&gt;

&lt;p&gt;Note :Many people think that internet is something they provide, no!!. They only provide access to the internet. We people use ISP as a medium to access the data across the globe. &lt;/p&gt;

&lt;h2&gt;
  
  
  Submarine Cables:
&lt;/h2&gt;

&lt;p&gt;Data from the servers are accessed by the people in the world using submarine cables. These cables are laid between different countries. Visit &lt;a href="https://www.submarinecablemap.com" rel="noopener noreferrer"&gt;https://www.submarinecablemap.com&lt;/a&gt; to have a detailed view of the cables laid. &lt;br&gt;
They are well protected from getting damaged, consisting of many layers of protection.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgqzir2v3nyuddv66dk6q.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgqzir2v3nyuddv66dk6q.png" alt="Layers in the cable" width="391" height="300"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Flow of data:
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy4yv5z2kai7c62pdn8df.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy4yv5z2kai7c62pdn8df.png" alt="Flow of data from servers to users" width="541" height="290"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ISP :&lt;/strong&gt; Act as medium &lt;br&gt;
&lt;strong&gt;User :&lt;/strong&gt; Access the data &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;User don't have access to the data in the server until they have an IP.&lt;/li&gt;
&lt;li&gt;In order to access the data from the server the user pays the ISP to access the data. &lt;/li&gt;
&lt;li&gt;The ISP provide the data in return, to the user.
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;ISP's provide a specific amount of data to be transferred &lt;br&gt;
For example, 1gb internet package means we can send or receive data of 1gb.&lt;/p&gt;

</description>
      <category>cloud</category>
      <category>networking</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>AWS Shield: Enhancing Cloud Security</title>
      <dc:creator>NITIN B</dc:creator>
      <pubDate>Mon, 31 Mar 2025 17:28:50 +0000</pubDate>
      <link>https://forem.com/nitin_b_839821d8ec281e9c9/aws-shield-enhancing-cloud-security-2of5</link>
      <guid>https://forem.com/nitin_b_839821d8ec281e9c9/aws-shield-enhancing-cloud-security-2of5</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fspmjwee3vf5cge9pg4xs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fspmjwee3vf5cge9pg4xs.png" alt="Image description" width="768" height="386"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In today’s digital age, where online threats are becoming more sophisticated and pervasive, ensuring the security of your cloud infrastructure is more crucial than ever. For businesses relying on AWS (Amazon Web Services), AWS Shield stands as a critical tool to protect against Distributed Denial-of-Service (DDoS) attacks and maintain the availability of your applications.&lt;/p&gt;

&lt;p&gt;In this blog post, we'll explore what AWS Shield is, its types, and how it works to safeguard your AWS environment.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is AWS Shield?&lt;/strong&gt;&lt;br&gt;
AWS Shield is a managed Distributed Denial-of-Service (DDoS) protection service offered by Amazon Web Services. It is designed to protect your AWS resources from external threats that attempt to overwhelm your application or services, such as DDoS attacks. These attacks are aimed at flooding a target with malicious traffic, rendering the service unavailable to legitimate users.&lt;/p&gt;

&lt;p&gt;DDoS attacks can be highly disruptive, leading to downtime, data breaches, and reputational damage. AWS Shield provides advanced detection and mitigation capabilities to safeguard against these attacks, ensuring your business-critical applications remain secure and operational.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Types of AWS Shield&lt;/strong&gt;&lt;br&gt;
AWS Shield comes in two versions, each offering different levels of protection:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. AWS Shield Standard&lt;/strong&gt;&lt;br&gt;
AWS Shield Standard is automatically included at no additional cost with all AWS services, providing fundamental protection against common and smaller-scale DDoS attacks. It uses a variety of detection techniques to identify and mitigate threats in real time, ensuring the availability of AWS services such as EC2, Elastic Load Balancer (ELB), and CloudFront.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key features of AWS Shield Standard:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Protection against most common DDoS attacks.&lt;/li&gt;
&lt;li&gt;24/7 access to the AWS DDoS Response Team (DRT) for emergencies.&lt;/li&gt;
&lt;li&gt;Global threat intelligence to provide automatic and adaptive protection.&lt;/li&gt;
&lt;li&gt;Protection across multiple layers of the AWS infrastructure.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;While AWS Shield Standard provides robust protection, it is ideal for smaller-scale businesses or applications that don’t expect to face complex or large-scale DDoS attacks.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. AWS Shield Advanced&lt;/strong&gt;&lt;br&gt;
AWS Shield Advanced takes protection to the next level with more sophisticated features and added support. This premium service offers enhanced DDoS detection, automatic mitigation of larger and more complex attacks, and additional support for application layer protections.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key features of AWS Shield Advanced:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;24/7 access to the DDoS Response Team (DRT):&lt;/strong&gt; AWS experts provide round-the-clock assistance in the event of a large-scale attack.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Protection for non-AWS resources:&lt;/strong&gt; Shield Advanced protects not only AWS services but also non-AWS resources like on-premise data centers.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cost Protection:&lt;/strong&gt; In case of a DDoS attack, Shield Advanced includes cost protection that covers the extra costs incurred due to the attack.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Advanced attack diagnostics and reporting:&lt;/strong&gt; Provides detailed visibility into attack trends and specific attack vectors.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Web Application Firewall (WAF) Integration:&lt;/strong&gt; Shield Advanced can integrate seamlessly with AWS WAF to further secure your web applications from vulnerabilities and threats.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;AWS Shield Advanced is designed for large enterprises or businesses with high-risk applications that require comprehensive and proactive DDoS protection. The service provides robust security for applications with complex security needs.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>AWS 3Tier Architecture</title>
      <dc:creator>NITIN B</dc:creator>
      <pubDate>Mon, 31 Mar 2025 17:24:01 +0000</pubDate>
      <link>https://forem.com/nitin_b_839821d8ec281e9c9/aws-3tier-architecture-315o</link>
      <guid>https://forem.com/nitin_b_839821d8ec281e9c9/aws-3tier-architecture-315o</guid>
      <description>&lt;p&gt;&lt;strong&gt;Create role for EC2&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3mfogtnju1mng7efvzox.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3mfogtnju1mng7efvzox.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating VPC&lt;/strong&gt;:&lt;br&gt;
VPC is created to have a virtual private cloud which is used to keep our cloud network separate from other cloud networks.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgg85mrhjim5xvjoi25sh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgg85mrhjim5xvjoi25sh.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating Subnets&lt;/strong&gt;:&lt;br&gt;
Since the 3tier atchitecture has 3 sunets in 2 AZs so we need to create 6 subnets. In each AZ we need to create 2 private subnet and one public subnet.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu16jynxe07l6c0b0sjv4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu16jynxe07l6c0b0sjv4.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating Internet Gateway:&lt;/strong&gt;&lt;br&gt;
In order to have communication with the internet we must have an internet gateway.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqpjblar7e70js2k257tc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqpjblar7e70js2k257tc.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating NAT gateways:&lt;/strong&gt;&lt;br&gt;
NAT gateway is created in public subnets and it helps the private subnet to connect with the internet.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0ejdy4almdklolyuaow8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0ejdy4almdklolyuaow8.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating Route Tables:&lt;/strong&gt;&lt;br&gt;
Route tables are tables that define the route between services.&lt;br&gt;
This helps the data in a specified path.&lt;br&gt;
Create Route tables and edit the routes accordingly and associate the subnets.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnb0yf0915ujcepw175q6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnb0yf0915ujcepw175q6.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Creating security groups&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fffzczebor29ofs66281u.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fffzczebor29ofs66281u.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating subnet group for database:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F83pkr9fhc7pbjnht6hav.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F83pkr9fhc7pbjnht6hav.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;creating database&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frgko77953s7fkztpsam6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frgko77953s7fkztpsam6.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating EC2 instances:&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Creating connection with DB:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffr1im6qm3smqvti8yj5g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffr1im6qm3smqvti8yj5g.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Inserting data in the database:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnsmeemsy0euntictgc2i.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnsmeemsy0euntictgc2i.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating a bucket and uploading objects:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqehvk2xxese3qb2emike.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqehvk2xxese3qb2emike.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Downloading the s3 objects in the machine&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8y8gd5gx2ywnx1k5xkk8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8y8gd5gx2ywnx1k5xkk8.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating an Image&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5ivsorxf7hqmnb3t3513.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5ivsorxf7hqmnb3t3513.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating a target group:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6xaj3ndqh65f8jz9e6ie.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6xaj3ndqh65f8jz9e6ie.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating internal load balancer:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Furgsvbyanysk29wobl1u.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Furgsvbyanysk29wobl1u.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Launch template creation:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fprm1lxpkbz0svb8kxbpi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fprm1lxpkbz0svb8kxbpi.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating a Auto scaling group:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F96m53wi9wsj6lhy2ptz3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F96m53wi9wsj6lhy2ptz3.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating a WebTier instance:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4uv2qjhwbaljodnpm7g6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4uv2qjhwbaljodnpm7g6.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Uploading the files and accessing&lt;/strong&gt;:&lt;br&gt;
After creating webtier instance now we are accessing the web tier in the server&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9i8u8y6zquh3qsiy1nud.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9i8u8y6zquh3qsiy1nud.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkyg60t5gavzgtqwp7f7w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkyg60t5gavzgtqwp7f7w.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating target group for Internet facing load balancer&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqyqtjbvncafske62esuh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqyqtjbvncafske62esuh.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating a Internet facing load balancer&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fx0eol5v03ikxovbgt6xj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fx0eol5v03ikxovbgt6xj.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating launch template for WebTier&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F84xk82910jmr4qx4j10e.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F84xk82910jmr4qx4j10e.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating Auto Scaling group for Webtier&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl2awc06afoi94lujludc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl2awc06afoi94lujludc.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>AWS 101 Workshop</title>
      <dc:creator>NITIN B</dc:creator>
      <pubDate>Mon, 31 Mar 2025 17:19:01 +0000</pubDate>
      <link>https://forem.com/nitin_b_839821d8ec281e9c9/aws-101-workshop-1da7</link>
      <guid>https://forem.com/nitin_b_839821d8ec281e9c9/aws-101-workshop-1da7</guid>
      <description>&lt;p&gt;&lt;strong&gt;Creating VPC:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqzg30gok50qnbo9i37tm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqzg30gok50qnbo9i37tm.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating security groups&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5h0rxus3iraq0jw5lcdv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5h0rxus3iraq0jw5lcdv.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fg0jrh9yfde860yk7v0ns.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fg0jrh9yfde860yk7v0ns.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Role creation for EC2&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fueq4usa4zhcqliuvpt71.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fueq4usa4zhcqliuvpt71.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Web server creation:&lt;/strong&gt;&lt;br&gt;
Creating a web server in the private subnet.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkfaulx3y0sh80kwa1ou9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkfaulx3y0sh80kwa1ou9.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating target group for load balancer&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvvg0r3sc3uk7ip5xtwnm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvvg0r3sc3uk7ip5xtwnm.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creation of load balancer&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbwaol8mro2xl14b79wny.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbwaol8mro2xl14b79wny.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating a bucket and uploading&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa5gwdv5z10ju2xudjzfq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa5gwdv5z10ju2xudjzfq.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Creating Auto scaling group&lt;/strong&gt;&lt;br&gt;
Inorder to create auto scaling group we must create machine image and create a template.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5e638ml1mi6d688z9ar5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5e638ml1mi6d688z9ar5.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;br&gt;
Creating launch template:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgo952kbt0n9f8meogv3w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgo952kbt0n9f8meogv3w.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;created auto scaling group :&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh3gk4yo5t3njveg4657z.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh3gk4yo5t3njveg4657z.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Output:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbh7ueuthqfggmppiiqhz.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbh7ueuthqfggmppiiqhz.jpg" alt="Image description" width="800" height="403"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
