<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" version="2.0">
    <channel>
        
        <title>
            <![CDATA[ aws cli - freeCodeCamp.org ]]>
        </title>
        <description>
            <![CDATA[ Browse thousands of programming tutorials written by experts. Learn Web Development, Data Science, DevOps, Security, and get developer career advice. ]]>
        </description>
        <link>https://www.freecodecamp.org/news/</link>
        <image>
            <url>https://cdn.freecodecamp.org/universal/favicons/favicon.png</url>
            <title>
                <![CDATA[ aws cli - freeCodeCamp.org ]]>
            </title>
            <link>https://www.freecodecamp.org/news/</link>
        </image>
        <generator>Eleventy</generator>
        <lastBuildDate>Mon, 24 Aug 2026 07:41:10 +0000</lastBuildDate>
        <atom:link href="https://www.freecodecamp.org/news/tag/aws-cli/rss.xml" rel="self" type="application/rss+xml" />
        <ttl>60</ttl>
        
            <item>
                <title>
                    <![CDATA[ AWS CloudFormation: Where to Find Help When You Need It ]]>
                </title>
                <description>
                    <![CDATA[ Staring at a plain, dumb command line prompt with no clue what to do with the AWS CLI next can be a humbling experience. And, in my experience at least, staring at the Management Console for AWS CloudFormation can be worse.  So let me offer you some ... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/aws-cloudformation-where-to-find-help/</link>
                <guid isPermaLink="false">66b995ac65fc624db0255dcb</guid>
                
                    <category>
                        <![CDATA[ AWS ]]>
                    </category>
                
                    <category>
                        <![CDATA[ aws cli ]]>
                    </category>
                
                    <category>
                        <![CDATA[ cloudformation ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ David Clinton ]]>
                </dc:creator>
                <pubDate>Mon, 18 May 2020 13:00:00 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2020/05/automation.jpg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Staring at a plain, dumb command line prompt with no clue what to do with the AWS CLI next can be a humbling experience. And, in my experience at least, staring at the Management Console for AWS CloudFormation can be worse. </p>
<p>So let me offer you some quick "getting started" help based on part of the content in <a target="_blank" href="https://pluralsight.pxf.io/EMPE2">my latest Pluralsight course</a>. </p>
<p>First of all, if you're planning to manage your CloudFormation stacks through the AWS CLI rather than the Management Console, I discuss the basics in <a target="_blank" href="https://www.freecodecamp.org/news/aws-cli-tutorial-install-configure-understand-resource-environment/">this article</a>. Once that's all taken care of, you'll be ready for anything. </p>
<p>Start simple: </p>
<pre><code>$ aws s3 ls
<span class="hljs-number">2019</span><span class="hljs-number">-11</span><span class="hljs-number">-03</span> <span class="hljs-number">13</span>:<span class="hljs-number">16</span>:<span class="hljs-number">59</span> athena5905
<span class="hljs-number">2019</span><span class="hljs-number">-02</span><span class="hljs-number">-03</span> <span class="hljs-number">18</span>:<span class="hljs-number">01</span>:<span class="hljs-number">42</span> book<span class="hljs-number">-3939</span>
<span class="hljs-number">2014</span><span class="hljs-number">-07</span><span class="hljs-number">-01</span> <span class="hljs-number">18</span>:<span class="hljs-number">52</span>:<span class="hljs-number">32</span> elasticbeanstalk-ap-northeast<span class="hljs-number">-1</span><span class="hljs-number">-426397493112</span>
<span class="hljs-number">2014</span><span class="hljs-number">-08</span><span class="hljs-number">-28</span> <span class="hljs-number">16</span>:<span class="hljs-number">57</span>:<span class="hljs-number">49</span> elasticbeanstalk-us-east<span class="hljs-number">-1</span><span class="hljs-number">-426497493912</span>
<span class="hljs-number">2019</span><span class="hljs-number">-05</span><span class="hljs-number">-04</span> <span class="hljs-number">22</span>:<span class="hljs-number">17</span>:<span class="hljs-number">50</span> ltest236
<span class="hljs-number">2018</span><span class="hljs-number">-07</span><span class="hljs-number">-15</span> <span class="hljs-number">15</span>:<span class="hljs-number">52</span>:<span class="hljs-number">30</span> mybucket99688223
<span class="hljs-number">2017</span><span class="hljs-number">-07</span><span class="hljs-number">-25</span> <span class="hljs-number">17</span>:<span class="hljs-number">06</span>:<span class="hljs-number">43</span> nextcloud3239027
</code></pre><p>"aws" in that example tells your shell that you want what comes next to be handled by the AWS CLI. The "s3" I type next tells the CLI that I'll be using the S3 service - that's Amazon's Simple Storage Service. Finally, "ls" or "list" is the command I'd like to run against that service. </p>
<p>The CLI, using the account authentication variables that the configure tool added to my environment, will now hurry off and access my account, in this case retrieving the names of all of my buckets.</p>
<p>Predictably, you tell AWS that you're looking to work with CloudFormation using "cloudformation." If I just run that without specifying a command, I'll get an error message:</p>
<pre><code>aws cloudformation
<span class="hljs-attr">usage</span>: aws [options] &lt;command&gt; &lt;subcommand&gt; [&lt;subcommand&gt; ...] [parameters]
To see help text, you can run:

  aws help
  aws &lt;command&gt; help
  aws &lt;command&gt; &lt;subcommand&gt; help
aws: error: the following arguments are required: operation
</code></pre><p>But it's an important message, as it tells us how to access the inline documentation. Context-sensitive help is available at each layer. </p>
<p>See what happens if you add "help" after "cloudformation". You'll get a brief description and then a list of all the available subcommands. </p>
<pre><code>$ aws cloudformation help

CLOUDFORMATION()                                              CLOUDFORMATION()
NAME
       cloudformation -
DESCRIPTION
AWS  CloudFormation  allows you to create and manage AWS infrastructure deployments predictably and repeatedly. You can use AWS  CloudFormation to  leverage AWS products, such <span class="hljs-keyword">as</span> Amazon Elastic Compute Cloud, Amazon Elastic Block Store, Amazon Simple Notification Service,  Elastic  Load Balancing,  and Auto Scaling to build highly-reliable, highly scalable, cost-effective applications without creating or configuring the  underlying AWS infrastructure.
With  AWS  CloudFormation, you declare all <span class="hljs-keyword">of</span> your resources and dependencies <span class="hljs-keyword">in</span> a template  file.  The  template  defines  a  collection  <span class="hljs-keyword">of</span> resources  <span class="hljs-keyword">as</span>  a single unit called a stack. AWS CloudFormation creates and deletes all member resources <span class="hljs-keyword">of</span> the stack together and manages  all dependencies between the resources <span class="hljs-keyword">for</span> you.
For  more information about AWS CloudFormation, see the AWS CloudFormation Product Page.
Amazon CloudFormation makes use <span class="hljs-keyword">of</span> other  AWS  products.  If  you  need additional  technical information about a specific AWS product, you can find the product<span class="hljs-string">'s technical documentation at docs.aws.amazon.com.

AVAILABLE COMMANDS
       o cancel-update-stack
       o continue-update-rollback
       o create-change-set
       o create-stack
       o create-stack-set
       o delete-change-set
       o delete-stack
       o delete-stack-instances
       o delete-stack-set
       o deploy
       o describe-account-limits
       o describe-change-set
       o describe-stack-events
       o describe-stack-instance
       o describe-stack-resource
       o describe-stack-resources
       o describe-stack-set
       o describe-stack-set-operation
       o describe-stacks
       o estimate-template-cost
       o execute-change-set
       o get-stack-policy
[...]</span>
</code></pre><p>Now run the "describe-stacks" command. There are probably no live stacks in your account right now so you won't see any output. </p>
<p>But do that again, this time adding "help". This one will show you some options that'll let you filter or manipulate the data you get back. You could, for instance, point the CLI to one specific stack by using "--stack-name" followed by the name of an existing stack.</p>
<pre><code>$ aws cloudformation describe-stacks
$ aws cloudformation describe-stacks help
NAME
       describe-stacks -
DESCRIPTION
       Returns  the  description <span class="hljs-keyword">for</span> the specified stack; <span class="hljs-keyword">if</span> no stack name was specified, then it returns the description <span class="hljs-keyword">for</span> all the stacks created.
       NOTE:
          If the stack does not  exist,  an  AmazonCloudFormationException  is returned.
       See also: AWS API Documentation
       See <span class="hljs-string">'aws help'</span> <span class="hljs-keyword">for</span> descriptions <span class="hljs-keyword">of</span> <span class="hljs-built_in">global</span> parameters.
       describe-stacks  is  a  paginated  operation. Multiple API calls may be issued <span class="hljs-keyword">in</span> order to retrieve the entire data set  <span class="hljs-keyword">of</span>  results.  You  can disable pagination by providing the --no-paginate argument.  When using --output text and the --query argument on  a  paginated  response,  the --query  argument  must  extract data <span class="hljs-keyword">from</span> the results <span class="hljs-keyword">of</span> the following query expressions: Stacks

SYNOPSIS
            describe-stacks
          [--stack-name &lt;value&gt;]
          [--cli-input-json &lt;value&gt;]
          [--starting-token &lt;value&gt;]
          [--max-items &lt;value&gt;]
          [--generate-cli-skeleton &lt;value&gt;]

OPTIONS
       --stack-name (string)
          The name or the unique stack ID that is associated <span class="hljs-keyword">with</span>  the  stack,
          which are not always interchangeable:
[...]

$ aws cloudformation describe-stacks --stack-name myname
</code></pre><p>Those are tools that'll help you no matter what AWS service you're using. But looking specifically at CloudFormation, there are some valuable official collections of sample templates you should know about. JSON or YAML syntax being what they are, you probably won't want to start from an empty document. </p>
<p>Amazon itself has done a great job creating templates for us to work with. Your first stop should be the <a target="_blank" href="https://aws.amazon.com/cloudformation/resources/templates/">AWS CloudFormation Templates page</a>. Here you'll find links to snippets and specific application frameworks and some more cutting edge content. </p>
<p>But right now I'd like to draw your attention to one of the "sample templates" organized by AWS service (this code comes from one of the <a target="_blank" href="https://s3.us-west-2.amazonaws.com/cloudformation-templates-us-west-2/EC2InstanceWithSecurityGroupSample.template">Amazon EC2 examples</a>). </p>
<p>The template begins with a free form description that helpfully tells us what kind of stack this will generate. We're also told that we could customize the template by using an existing Elastic IP address instead of one that's automatically generated. </p>
<pre><code>{
  <span class="hljs-string">"AWSTemplateFormatVersion"</span> : <span class="hljs-string">"2010-09-09"</span>,

  <span class="hljs-string">"Description"</span> : <span class="hljs-string">"AWS CloudFormation Sample Template EC2InstanceWithSecurityGroupSample: Create an Amazon EC2 instance running the Amazon Linux AMI. The AMI is chosen based on the region in which the stack is run. This example creates an EC2 security group for the instance to give you SSH access. **WARNING** This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template."</span>,
</code></pre><p>You'll need to pass in the name of an existing KeyPair from the current region in your AWS account so you'll be able to open remote SSH into the Linux instance that will be launched. You can alternatively pass along that value from the command line.</p>
<p>The Parameters section is also where you define the EC2 instance type. The default is t2.small, but we'd be allowed to either swap that value out for any of the other AllowedValues in this document, or override it from the command line. </p>
<pre><code>  <span class="hljs-string">"Parameters"</span> : {
    <span class="hljs-string">"KeyName"</span>: {
      <span class="hljs-string">"Description"</span> : <span class="hljs-string">"Name of an existing EC2 KeyPair to enable SSH access to the instance"</span>,
      <span class="hljs-string">"Type"</span>: <span class="hljs-string">"AWS::EC2::KeyPair::KeyName"</span>,
      <span class="hljs-string">"ConstraintDescription"</span> : <span class="hljs-string">"must be the name of an existing EC2 KeyPair."</span>
    },

    <span class="hljs-string">"InstanceType"</span> : {
      <span class="hljs-string">"Description"</span> : <span class="hljs-string">"WebServer EC2 instance type"</span>,
      <span class="hljs-string">"Type"</span> : <span class="hljs-string">"String"</span>,
      <span class="hljs-string">"Default"</span> : <span class="hljs-string">"t2.small"</span>,
</code></pre><p>If you scroll down through the Mappings section, we can see long lists of available hardware architectures and Amazon Machine Image identifiers for each region. </p>
<p>This is an optional section where you can insert your own non-standard values so, say, an image type would be launched based on a particular set of parameters - perhaps even a private AMI image. Such data is organized into key/value pairs. </p>
<pre><code>  <span class="hljs-string">"Mappings"</span> : {
    <span class="hljs-string">"AWSInstanceType2Arch"</span> : {
      <span class="hljs-string">"t1.micro"</span>    : { <span class="hljs-string">"Arch"</span> : <span class="hljs-string">"HVM64"</span>  },
      <span class="hljs-string">"t2.nano"</span>     : { <span class="hljs-string">"Arch"</span> : <span class="hljs-string">"HVM64"</span>  },
      <span class="hljs-string">"t2.micro"</span>    : { <span class="hljs-string">"Arch"</span> : <span class="hljs-string">"HVM64"</span>  },
</code></pre><p>The Resources section in this case defines your instance environment. The SecurityGroup, for instance, is configured to open the SSH port 22 but nothing else. The instance's public IP address is also associated with the new Elastic IP address that will be allocated. </p>
<pre><code>    <span class="hljs-string">"InstanceSecurityGroup"</span> : {
      <span class="hljs-string">"Type"</span> : <span class="hljs-string">"AWS::EC2::SecurityGroup"</span>,
      <span class="hljs-string">"Properties"</span> : {
        <span class="hljs-string">"GroupDescription"</span> : <span class="hljs-string">"Enable SSH access via port 22"</span>,
        <span class="hljs-string">"SecurityGroupIngress"</span> : [ {
          <span class="hljs-string">"IpProtocol"</span> : <span class="hljs-string">"tcp"</span>,
          <span class="hljs-string">"FromPort"</span> : <span class="hljs-string">"22"</span>,
          <span class="hljs-string">"ToPort"</span> : <span class="hljs-string">"22"</span>,
          <span class="hljs-string">"CidrIp"</span> : { <span class="hljs-string">"Ref"</span> : <span class="hljs-string">"SSHLocation"</span>}
        } ]
      }
    }
  },
</code></pre><p>One more important Amazon resource: <a target="_blank" href="https://aws.amazon.com/quickstart/?quickstart-all.sort-by=item.additionalFields.updateDate&amp;quickstart-all.sort-order=desc">Quick Starts</a>. Strictly speaking the pre-built infrastructure stacks that are provided here to help you create more complex cloud deployments aren't directly related to CloudFormation. They were provided by third-party companies to simplify the process of building their infrastructure in within the AWS platform. </p>
<p>But the fact is that each one starts with its own unique CloudFormation template. Clicking through to look at actual examples will often lead you to the stack source code templates within a GitHub repo. <a target="_blank" href="https://github.com/aws-quickstart/quickstart-hashicorp-consul">This example</a> shows us the tools you'd need to fire up a HashiCorp Console:</p>
<p><img src="https://www.freecodecamp.org/news/content/images/2020/05/Screenshot-from-2020-05-17-13-06-37.png" alt="Image" width="600" height="400" loading="lazy"></p>
<p>Either way, feel free to use these templates as learning tools - or browse through the selection to see if there's a stack there that happens to fit your needs.</p>
<p><em>There's much more administration goodness in the form of books, courses, and articles available at my <a target="_blank" href="https://bootstrap-it.com/">bootstrap-it.com</a>.</em></p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ AWS CLI Tutorial – How to Install, Configure, and Use AWS CLI to Understand Your Resource Environment ]]>
                </title>
                <description>
                    <![CDATA[ How to get exactly the account and environment information you need to manage your AWS account using just the AWS CLI Installing the AWS CLI is actually quite simple. The best way to get it done is to head over to the AWS installation guide and follo... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/aws-cli-tutorial-install-configure-understand-resource-environment/</link>
                <guid isPermaLink="false">66b995a977e922646120d721</guid>
                
                    <category>
                        <![CDATA[ AWS ]]>
                    </category>
                
                    <category>
                        <![CDATA[ aws cli ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Cloud Computing ]]>
                    </category>
                
                    <category>
                        <![CDATA[ cloudformation ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ David Clinton ]]>
                </dc:creator>
                <pubDate>Mon, 11 May 2020 13:00:00 +0000</pubDate>
                <media:content url="https://www.freecodecamp.org/news/content/images/2020/05/keyboard.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p><em>How to get exactly the account and environment information you need to manage your AWS account using just the AWS CLI</em></p>
<p>Installing the AWS CLI is actually quite simple. The best way to get it done is to head over to the <a target="_blank" href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html">AWS installation guide</a> and follow instructions for your OS. </p>
<p>Right now they're pushing us towards version 2 of the CLI and I haven't seen any reason not to go along. I'm working with Linux so that's where I'd head next.</p>
<p>To get it done, I'll paste the curl command from the Amazon page into my Linux shell that'll download the package and write it to a local zip file, which I'll then unzip. That'll create a new directory called aws that'll contain a install script, which I can run using sudo to get admin privileges. I'll run aws --version to confirm everything worked as it was supposed to.</p>
<pre><code>curl <span class="hljs-string">"https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip"</span> -o <span class="hljs-string">"awscliv2.zip"</span>
unzip awscliv2.zip
ls aws
sudo ./aws/install
aws --version
</code></pre><p>The next step will require one quick trip to the management console. You see, to authenticate the CLI to your account you'll need a valid access key. Now, the CLI has a "create-access-key" command that'll generate a new key, but that's only possible once I've authenticated. I'm sure you understand the problem with that.</p>
<p>You access the security credentials page from the drop-down account menu at the top of any page on the console. With your credentials in hand, you can run "aws configure." You'll be prompted to enter your access key ID and the secret key itself. If you like you can then choose a default AWS region and output format. The format won't be an issue so I'll leave it as default.</p>
<pre><code>aws configure
</code></pre><p>That's it. Just to confirm it all worked, I'll list all the S3 buckets in my account. With that, we'll all set to get down to work in the next clip.</p>
<pre><code>aws s3 ls
</code></pre><p>You may already know that Amazon's CloudFormation service exists to let you manage your application infrastructure by organising it into stacks of your AWS account resources.</p>
<p>The CloudFormation templates that define those stacks can be shared, edited, and launched anywhere, giving you predictable and reliable cloud application environments wherever and whenever you need them. </p>
<p>You may also know that you can mange your CloudFormation stacks both through the AWS Management Console and, as I discuss in my <a target="_blank" href="https://pluralsight.pxf.io/EMPE2">new Pluralsight course, Create and Manage Stacks with AWS CloudFormation Using the Command Line Interface</a>, using the AWS CLI.</p>
<p>If you do choose to go with the AWS CLI – something I highly recommend – you'll need a way to gather key information about other account resources. But how you're expected to get that information through the CLI might, at first, not appear so obvious.</p>
<p>To show you what I mean, let's experiment with a more complex stack using a template that comes from the AWS documentation samples.</p>
<p>The <a target="_blank" href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/sample-templates-appframeworks-us-east-1.html">Application Frameworks template set</a> includes a template for auto scaled Linux servers that will come pre-provisioned with the Apache web server and the PHP scripting language, and a connection to a Multi-AZ RDS database instance running the MySQL database engine.</p>
<p>You can click View from that AWS documentation page and take a look at the template itself. There you'll see Parameters sections defining the VPC and subnets into which your instance will launch and the MySQL database name, user, and password. </p>
<p>It's critical that all the right services know those details because, otherwise, they won't be able to talk to each other. We'll have to figure out a way to add those values. To get things going, you can simply click to view the template (<a target="_blank" href="https://s3.amazonaws.com/cloudformation-templates-us-east-1/LAMP_Multi_AZ.template">which you can see here</a>), and copy the contents, pasting it into a new JSON file on your local machine.</p>
<p>You use the CLI to fire up a Cloudformation stack using the create-stack command. The command, however, takes a few arguments to pass important information. This minimal example shows you how to point CloudFormation to your JSON template file, a name to assign to your stack, and a valid SSH key so I'll be able to log into the instance it creates.</p>
<pre><code>aws cloudformation create-stack \
  --template-body file:<span class="hljs-comment">//lamp-as.json \</span>
  --stack-name lamp \
  --parameters \
  ParameterKey=KeyName,ParameterValue=mykey
</code></pre><p>The problem is that, if you were to run that command against the template in your JSON document, it would fail. That's because, as you'll no doubt remember from looking through the template, there are some extra parameters that need satisfying. Specifically, we'll need references to a VPC and to two subnets - and because this is a multi-availability-zone deployment, they'll need to be in different zones.</p>
<p>How will that work? It's the AWS CLI to the rescue. Need a VPC ID? Keeping in mind that VPCs are EC2 objects, you can run aws ec2 describe-vpcs and all the data you'll need - including the VPC ID - will magically appear. And subnets? Well more of the same, obviously. Just copy subnet IDs for any two of the subnets that will appear and you're in business.</p>
<pre><code>aws ec2 describe-vpcs
aws ec2 describe-subnets
</code></pre><p>Now let's put all that information together into our new version of the create-stack command. You'll need to be careful with this as there are some nasty gotchas in the syntax.</p>
<pre><code>aws cloudformation create-stack \
  --template-body file:<span class="hljs-comment">//lamp-as.json \</span>
  --stack-name lamp-<span class="hljs-keyword">as</span> \
  --parameters \
  ParameterKey=KeyName,ParameterValue=mykey \
  ParameterKey=VpcId,ParameterValue=vpc<span class="hljs-number">-1</span>ffbc964 \
  ParameterKey=Subnets,ParameterValue=\<span class="hljs-string">'subnet-0e170b31,subnet-52d6117c\' \
  ParameterKey=DBUser,ParameterValue=myadmin \
  ParameterKey=DBPassword,ParameterValue=mypass23</span>
</code></pre><p>The first new parameter is VPC-ID. But make sure you get the case right: using an uppercase D in Id will cause the whole thing to fail. I don't know why they make things so difficult to live with, but that's what we've got.</p>
<p>The next one is even more delicate. Since we need two subnets, we'll need to enter them on a single line separated by a comma - but no space. However, we'll also need to enclose the string within single apostrophes. But the CLI can't read apostrophes just like that, so we'll need to escape them using backslashes. Got that? </p>
<p>I'll also add those two database parameters: DBUser and my ultra secret, super cryptic DBPassword. Will it work? You betcha. But don't tell anyone how many times I had to try this without you watching before I got it right. Remember: failure is your friend.</p>
<p>When our stack is good and launched (which could take as long as half an hour), running describe-stacks will give us our website URL.</p>
<pre><code>aws cloudformation describe-stacks
</code></pre><p>But that's not the whole story.  I'm going to use another aws ec2 command - describe-instances this time - to get some information about the EC2 instances that were launched as part of this stack. This one will filter results, restricting output to only those instances that are currently running. </p>
<pre><code>aws ec2 describe-instances \
  --filters Name=instance-state-name,Values=running \
  --query <span class="hljs-string">'Reservations[*].Instances[*].{Instance:InstanceId,PublicIPAddress:PublicIpAddress}'</span>
</code></pre><p>I happen to have no other instances running in this region, so only the CloudFormation instances will show up. Now I use --query to further filter the output to give me only the Instance IDs and public IP addresses of those instances. There are, as you would expect, exactly two running.</p>
<p>Just a taste - and most of it related specifically to CloudFormation - but I think you get the idea of how information gathering works using the AWS CLI.</p>
<p><em>There's much more administration goodness in the form of books, courses, and articles available at my <a target="_blank" href="https://bootstrap-it.com">bootstrap-it.com</a>.</em> </p>
 ]]>
                </content:encoded>
            </item>
        
    </channel>
</rss>
