Advertisement · 728 × 90
#
Hashtag
#Keypair
Advertisement · 728 × 90
Preview
BTQ Technologies and Keypair Join Forces to Advance Post-Quantum Cryptography in Korea BTQ Technologies has announced a strategic investment in Keypair, enhancing post-quantum cryptography for Korea's critical infrastructure and national security.

BTQ Technologies and Keypair Join Forces to Advance Post-Quantum Cryptography in Korea #Seoul #BTQ_Technologies #Korea #Cryptography #Keypair

1 0 0 0
Preview
EC2 Key Pair Generate Activity: Create Key Pair ABC Company is in the process of migrating part of their...

dev.to/aws-builders... #aws #ec2 #keypair #linux #ssh #pem

0 0 0 0
Preview
EC2 Key Pair Generate Activity: Create Key Pair ABC Company is in the process of migrating part of their...

✍️ New blog post by Yashvi Kothari

EC2 Key Pair Generate

#aws #ec2 #keypair #pem

0 0 0 0
Creating a Service Control Policy To Limit SSH Key Algorithms ACM.384 Using an SCP with Conditions on the KeyPairType to restrict allowed algorithms when taking actions involving EC2 Key Pairs

Creating a Service Control Policy To Limit SSH Key Algorithms
~~
ACM.384 Using an SCP with Conditions on the KeyPairType to restrict allowed algorithms when taking actions involving EC2 Key Pairs
~~
#AWS #SSH #EC2 #Keypair
medium.com/cloud-securi...

0 0 0 0
Preview
Setting up additional EC2 users with username/password and Keypair authentication <p><span style="font-family: inherit;">When an Ubuntu EC2 instances is created in the AWS Cloud, we should be able to connect to the EC2 using the username/password and the Keypairs. In the case of the Ubuntu AMI provided by AWS, only the Keypair authentication is enabled while the username/password authentication is disabled. Very often I get the query "How to create additional users for the Ubuntu EC2 with Keypair for authentication", so is the blog. At the end of the day, Linux is a Linux weather we run it in the Cloud, Laptop or in On-Premise, so the instructions apply everywhere.</span></p><p><span style="font-family: inherit;"></span></p><div class="separator" style="clear: both; text-align: center;"><span style="font-family: inherit;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhLc0ZNf8-RMbaGuopNS9o7xyBXa-g_Bc28qlTrrGn6CV9SWQHxGZuuy2f2tK9IfDxmlWAJqESqfY_NOK6wIEyR98MZ04yfB3i4xFU7Y2hNvvMipBXvczvs-tSVFFnYPRd42PAZcuEDUKt7/s786/001-different-ec2-authentications.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="301" data-original-width="786" height="153" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhLc0ZNf8-RMbaGuopNS9o7xyBXa-g_Bc28qlTrrGn6CV9SWQHxGZuuy2f2tK9IfDxmlWAJqESqfY_NOK6wIEyR98MZ04yfB3i4xFU7Y2hNvvMipBXvczvs-tSVFFnYPRd42PAZcuEDUKt7/w400-h153/001-different-ec2-authentications.png" width="400"/></a></span></div><h2 style="clear: both; text-align: left;"><span style="font-family: inherit;"><br/><br/><span>Setting up an EC2 user with username/password authentication</span></span></h2><div class="separator" style="clear: both; text-align: left;"><span style="font-family: inherit;"><b>Step 1:</b> Create an Ubuntu EC2 instance and connect to it</span></div><div class="separator" style="clear: both; text-align: left;"><span style="font-family: inherit;"><br/></span></div><div class="separator" style="clear: both; text-align: left;"><span style="font-family: inherit;"><b>Step 2:</b> Add user "praveen" using the below command</span></div><div class="separator" style="clear: both; text-align: left;"><span style="font-family: inherit;">#Enter the password and other details</span></div><div class="separator" style="clear: both; text-align: left;"><span style="font-family: inherit;">sudo adduser praveen<br/><br/></span></div><div class="separator" style="clear: both;"><div class="separator" style="clear: both;"><span style="font-family: inherit;"><b>Step 3:</b> Open the "/etc/ssh/sshd_config" file and set "PasswordAuthentication" to yes</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><br/></span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><b>Step 4:</b> Restart the ssh service</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;">sudo service ssh restart</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><br/></span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><b>Step 5:</b> Connect to the EC2 as the user "praveen" via Putty or some other software by specifying the password</span></div><br/><br/><h2 style="clear: both; text-align: left;"><span style="font-family: inherit;">Setting up an EC2 user with Keypair authentication</span></h2><div class="separator" style="clear: both;"><div class="separator" style="clear: both;"><span style="font-family: inherit;"><b>Step 1:</b> Add user "sripati" and disable the the password authentication</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;">#as we would be using the Keypair for authentication</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;">sudo adduser sripati --disabled-password</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><br/></span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><b>Step 2:</b> Switch as the user</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;">sudo su - sripati</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><br/></span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><b>Step 3:</b> Generate the keys. They would be in the .ssh folder</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;">ssh-keygen</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><br/></span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><b>Step 4:</b> Copy the public key to the authorized_keys file in the .ssh folder</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;">cat .ssh/id_rsa.pub &gt;&gt; .ssh/authorized_keys</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><br/></span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><b>Step 5:</b> Copy the private key in the </span>~/.ssh/id_rsa <span style="font-family: inherit;">to a file sripati.pem on your local machine</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;">cat ~/.ssh/id_rsa</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><br/></span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><b>Step 6:</b> Using <a href="https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html" target="_blank">PuttyGen</a> convert the pem file to ppk. "Load" the pem file and "Save private key" in the ppk format.</span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><br/></span></div><div class="separator" style="clear: both;"><span style="font-family: inherit;"><b>Step 7:</b> Now connect via Putty via the username as "sripati", the public IP of the EC2 instance and private key in the ppk format. There is no need to specify the password.</span></div></div></div> <div style="clear: both;"></div>

Setting up additional EC2 users with username/password and Keypair authentication When an Ubuntu ...

www.thecloudavenue.com/2020/10/additional-ec2-u...

#aws #ec2 #keypair #security

Event Attributes

0 0 0 0
Preview
Using the same Keypair across AWS Regions <div dir="ltr" style="text-align: left;" trbidi="on"><div><span style="font-family: inherit;"><div class="separator" style="clear: both; text-align: left;"><span>In one of the previous blog (<a href="https://www.thecloudavenue.com/2020/04/linux-ec2-authentication-key-pair.html" target="_blank">1</a>), we looked what happens behind the scenes when we use a Keypair for authentications against Linux. </span><span style="font-family: inherit;">This blog post is more about productivity. I do create and connect to EC2 instances quite often and so I have created </span><a href="https://documentation.help/PuTTY/config-saving.html" style="font-family: inherit;" target="_blank">Sessions</a><span style="font-family: inherit;"> in Putty for most of my regularly connected Linux instances. One of the Session is for AWS which automatically populates the username and the keypair as shown below. When I would like to connect to an EC2 instance all I need to specify the Public IP address of the EC2 instance.</span></div><div class="separator" style="clear: both; text-align: left;"><br/></div><div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7QhSkBLqefHTo3nWFf5-VVVsLu7EPc5W2kwFcVP-EsTie9t_gTWf3MvDsS19ZiSZ2TQ60FLq7msSBSe8MCQZ13J05tBQ4awI2ppyKKMrfiAk0Dgz0JFw0olB3WeZkfteIQbSUOTWZrkY8/s632/001-Putty_SavedSessions.jpg" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="576" data-original-width="632" height="365" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7QhSkBLqefHTo3nWFf5-VVVsLu7EPc5W2kwFcVP-EsTie9t_gTWf3MvDsS19ZiSZ2TQ60FLq7msSBSe8MCQZ13J05tBQ4awI2ppyKKMrfiAk0Dgz0JFw0olB3WeZkfteIQbSUOTWZrkY8/w400-h365/001-Putty_SavedSessions.jpg" width="400"/></a></div><br/><div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhOfnd7Cg7-Uf0nw24fiUdHcMA06wPDeHOzbFJNE_by-yDRg6D5GQu8DDgubDKA6gjOHam5f9q2wVtCWeEan-eUFe2VH_CrOw95HgvHL-Ag7g3iJuAivVqfAfAe_8yjGvz6nbeggT7Q87VG/s627/002-Authorization.jpg" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="571" data-original-width="627" height="364" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhOfnd7Cg7-Uf0nw24fiUdHcMA06wPDeHOzbFJNE_by-yDRg6D5GQu8DDgubDKA6gjOHam5f9q2wVtCWeEan-eUFe2VH_CrOw95HgvHL-Ag7g3iJuAivVqfAfAe_8yjGvz6nbeggT7Q87VG/w400-h364/002-Authorization.jpg" width="400"/></a></div><div><span><br/></span></div><div><span>It all looks fine and dandy, the only problem is when I create EC2 instances in different AWS regions to test High Availability or some other features and try to connect to them. With the above approach since the Keypairs have regional scope, when I connect to EC2 instances in different regions, I need to change the keypairs in Putty. It would be good to use the same Keypair across regions, this way I don't need to change when connecting to the EC2 in different regions when using Putty saved sessions feature. Let's look at how to.</span></div><div><span><br/></span></div><div><span><b>Step 1</b>: Download putty.exe and puttygen.exe from here (<a href="https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html" target="_blank">1</a>). There is no need to install it, just downloading should be good enough.</span></div><div><span><br/></span></div><div><span><b>Step 2</b>: Go to the EC2 Management Console and create a Keypair. Generate the Keypair by selecting the pem or ppk format. </span></div><br/><div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEin_UQDiv6FY49rnnd6fyD5elnmbJfbN1kPkvxCjiS5VYXKOlq953sMAWQp_8HgSiYIJki9sftluRponQrnSQylsuSBTIaP7lvU3hjtoFiujWhh8ozV7-vZAXJYF07b9IGJSqd6Nsu4qcQq/s1920/003-keypair-creation.jpg" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="954" data-original-width="1920" height="199" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEin_UQDiv6FY49rnnd6fyD5elnmbJfbN1kPkvxCjiS5VYXKOlq953sMAWQp_8HgSiYIJki9sftluRponQrnSQylsuSBTIaP7lvU3hjtoFiujWhh8ozV7-vZAXJYF07b9IGJSqd6Nsu4qcQq/w400-h199/003-keypair-creation.jpg" width="400"/></a></div><div><span><br/></span></div><div><span><b>Step 3</b>: When prompted store the private key.</span></div><br/><div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg4epKXbpRv_Nawqxv5oqM3KtV2e24QzQWIzLmCwf2D_iln4WvPOK19o8Fgn2n0cYxC3laYUDhjAzFnGDw1YpIBNdHxN-EKINsyj2mPfbGEdS1NprLnASC9gDrCxZtUCATAphpdIH41RC_r/s812/004-keypair-save.jpg" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="621" data-original-width="812" height="306" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg4epKXbpRv_Nawqxv5oqM3KtV2e24QzQWIzLmCwf2D_iln4WvPOK19o8Fgn2n0cYxC3laYUDhjAzFnGDw1YpIBNdHxN-EKINsyj2mPfbGEdS1NprLnASC9gDrCxZtUCATAphpdIH41RC_r/w400-h306/004-keypair-save.jpg" width="400"/></a></div><div><span><br/></span></div><div class="separator" style="clear: both; text-align: left;">The Keypair should be created as shown below.</div><div class="separator" style="clear: both; text-align: center;"><br/></div><div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZ2eaARsQkJF29bvo6s2H4uFY9HRV8Syxwm0QB6Ixo5XUjGpfWp73qsPBev71WoKleD6iSpfeSPzb42HmbWMkfoekxqAAN0rStc8XydE7jCBJ5h0lhd9UJqTM3d6pDCIVNxfUWto13NWOn/s1920/005-keypair-created.jpg" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="954" data-original-width="1920" height="199" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZ2eaARsQkJF29bvo6s2H4uFY9HRV8Syxwm0QB6Ixo5XUjGpfWp73qsPBev71WoKleD6iSpfeSPzb42HmbWMkfoekxqAAN0rStc8XydE7jCBJ5h0lhd9UJqTM3d6pDCIVNxfUWto13NWOn/w400-h199/005-keypair-created.jpg" width="400"/></a></div><div><span><br/></span></div><div><span><b>Step 4</b>: Start PuttyGen and click on Load.</span></div><br/><div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjkWu27NKAfuznnKYl0Dtz5FPwUq6Xko2r1RFsYBGbLZZuQM8vmB2cHmtgk6dlOFqwBGOMT7T4kj9g5xbGkDZkbfnCZxRMSLAitc6ETHDr-nwJKO5ykzLQoLvcn_K1HOQHo_VwEVKinRYub/s660/050-PuttyGen.jpg" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="605" data-original-width="660" height="366" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjkWu27NKAfuznnKYl0Dtz5FPwUq6Xko2r1RFsYBGbLZZuQM8vmB2cHmtgk6dlOFqwBGOMT7T4kj9g5xbGkDZkbfnCZxRMSLAitc6ETHDr-nwJKO5ykzLQoLvcn_K1HOQHo_VwEVKinRYub/w400-h366/050-PuttyGen.jpg" width="400"/></a></div><div><span><br/></span></div><div><span><b>Step 5</b>: Point to the private key which has been downloaded earlier. If the file is not visible then remove the filter and select "All files (*.*)". Click on Open and click on OK.</span></div><br/><div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiq9oo2R6k4wG-lwwMVcfIaoPQ0RpMpFVECLGc-8n0T4XgyVPTaLR-bQ5YzQAU0B9HHzhPyMZNkqp9DEiHqCA4COPmWDMzWw_20uB8iWgNTHWjGPWNi76buvsCNQ-LD7JeA47sHKcUmEi0I/s967/051-PuttyGen-Load.jpg" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="621" data-original-width="967" height="258" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiq9oo2R6k4wG-lwwMVcfIaoPQ0RpMpFVECLGc-8n0T4XgyVPTaLR-bQ5YzQAU0B9HHzhPyMZNkqp9DEiHqCA4COPmWDMzWw_20uB8iWgNTHWjGPWNi76buvsCNQ-LD7JeA47sHKcUmEi0I/w400-h258/051-PuttyGen-Load.jpg" width="400"/></a></div><br/><div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzjbuhHrHar-Gk5woFFvMRFVBnz8Z2QfduqP3Wx7FJbW1gC-tlmD762xKjtmafjU5_EcmEt6sCs2xZIvF4ISU_NB3SPI39If3t2RWUgJhHLt0qwumVjaYnOFPQ7P1q6ZFQ19LrPioYxy-S/s663/052-PuttyGen-Load.jpg" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="607" data-original-width="663" height="366" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzjbuhHrHar-Gk5woFFvMRFVBnz8Z2QfduqP3Wx7FJbW1gC-tlmD762xKjtmafjU5_EcmEt6sCs2xZIvF4ISU_NB3SPI39If3t2RWUgJhHLt0qwumVjaYnOFPQ7P1q6ZFQ19LrPioYxy-S/w400-h366/052-PuttyGen-Load.jpg" width="400"/></a></div><div><span><br/></span></div><div><span><b>Step 6</b>: Click on "Save public key" and specify the same file name but with a pub extension as shown below.</span></div><br/><div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjXJiazmh5ENV9Nm8hYqPiLPNiYynlmKM8Q3hNS4je5Uv0FD6DYTwgqC2rCR-jBsXLNtHBL4FneG74p_SwuhWt9QD8q47ngC_0DM_fL5k7DA_-r81BXLPi_RNoowakU8hqsMYEqIg5J0Z37/s972/053-PuttyGen-SavePublicKey.jpg" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="618" data-original-width="972" height="254" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjXJiazmh5ENV9Nm8hYqPiLPNiYynlmKM8Q3hNS4je5Uv0FD6DYTwgqC2rCR-jBsXLNtHBL4FneG74p_SwuhWt9QD8q47ngC_0DM_fL5k7DA_-r81BXLPi_RNoowakU8hqsMYEqIg5J0Z37/w400-h254/053-PuttyGen-SavePublicKey.jpg" width="400"/></a></div><div><span><br/></span></div><div><span><b>Step 7</b>: Go to the EC2 Management Console for some other region and navigate to the Keypair tab. Click on Actions and then "Import key pair".</span></div><br/><div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg9lsfBDF0J9opmf4bB2Fnn_SRF305jT4BS4U5h-RzE-rHC-NkmO0ZMBvBf-9weNykZpz4ZxpqmSTWlLiNFqqWEXyswLxOG1Z-0UQr_uz-rQzMRFbf9UO_GF66qcydmOJiianRx2AF6gtzp/s1920/100-some-other-region.jpg" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="954" data-original-width="1920" height="199" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg9lsfBDF0J9opmf4bB2Fnn_SRF305jT4BS4U5h-RzE-rHC-NkmO0ZMBvBf-9weNykZpz4ZxpqmSTWlLiNFqqWEXyswLxOG1Z-0UQr_uz-rQzMRFbf9UO_GF66qcydmOJiianRx2AF6gtzp/w400-h199/100-some-other-region.jpg" width="400"/></a></div><div><span><br/></span></div><div><span><b>Step 8</b>: Click on "Choose file" and point to the pub file which was created earlier. Finally click on Import to create the Keypair.</span></div><br/><div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhr6CLislIPawV-nFQ1Ce_CMhstK79JdKMJAcIIAzM9DWwgbPT_OTHxSDTgyU7DDBUE6RI9Xlsd8RR2NsgI0Sp7YPto-swdZH63nmbfHAZCfocM2cSA3ZHjWKxCFYBhNCEulDvuLjhBiHRa/s871/101-import-keypair.jpg" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="515" data-original-width="871" height="236" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhr6CLislIPawV-nFQ1Ce_CMhstK79JdKMJAcIIAzM9DWwgbPT_OTHxSDTgyU7DDBUE6RI9Xlsd8RR2NsgI0Sp7YPto-swdZH63nmbfHAZCfocM2cSA3ZHjWKxCFYBhNCEulDvuLjhBiHRa/w400-h236/101-import-keypair.jpg" width="400"/></a></div><br/><div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhW4PPbgUws2v7HeFQ6cUUQBdPZI0jXluENSUN3uc9JpshQlSvFupahmhyphenhyphenF5RSmakRj95EPw8PCNWiWRH04OgaF0Eao1YEcfTXn-a7mbZmICegzt5SnhBo3E3WFrTYgaw0jFZjhfbkdapGB/s1920/102-keypair-created.jpg" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="954" data-original-width="1920" height="199" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhW4PPbgUws2v7HeFQ6cUUQBdPZI0jXluENSUN3uc9JpshQlSvFupahmhyphenhyphenF5RSmakRj95EPw8PCNWiWRH04OgaF0Eao1YEcfTXn-a7mbZmICegzt5SnhBo3E3WFrTYgaw0jFZjhfbkdapGB/w400-h199/102-keypair-created.jpg" width="400"/></a></div><br/><span><b>Conclusion</b></span></span></div><div><span><span style="font-family: inherit;"><br/></span></span></div><div><span><span><span style="font-family: inherit;">Now we have created a Keypair in two regions. And both the regions have keypairs which have the same public/private key. So, we would be able to use the same Putty session when connecting to the EC2 instances in different regions. It's not a life saving hack, but it something interesting to know and saves a few seconds/clicks here and there.</span></span></span></div><div><span><span><span style="font-family: inherit;"><br/></span></span></span></div><div><span><span><span style="font-family: inherit;">Note that this approach is not recommended for production and sensitive setup as we are using the same Keypair across regions, but can definitely used when we are trying to learn AWS.</span></span></span></div> </div> <div style="clear: both;"></div>

Using the same Keypair across AWS Regions In one of the previous blog ( 1 ), we looked what happe...

www.thecloudavenue.com/2020/09/using-same-keypa...

#aws #keypair #security

Event Attributes

0 0 0 0