{"id":38271,"date":"2016-08-01T17:39:29","date_gmt":"2016-08-01T12:09:29","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=38271"},"modified":"2016-08-01T17:39:29","modified_gmt":"2016-08-01T12:09:29","slug":"ssh-iam-opsworks","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/","title":{"rendered":"Creating And Importing IAM User to Opsworks"},"content":{"rendered":"<p>Opsworks is a wonderful SaaS tool <a title=\"aws managed services\" href=\"https:\/\/tothenewco.pro\/devops-aws\">provided by AWS<\/a> which off-loads human driven tasks like managing own chef server, installing agents on each server, creating ssh user(s) even on run-time for the servers and various other benefits.<\/p>\n<p>In this blog an IAM User will be created without any CLI credentials, it will be registered with opsworks, a .pem file will be used to login and create a public key to allow the user(s) ssh into server(s).<\/p>\n<p><strong>Creating an IAM User<\/strong><\/p>\n<p>Go to IAM Service from AWS Console.<br \/>\nClick on Users(On the left side of the Page)<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38426\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/click_on_Users.png\" alt=\"IAM_Users\" width=\"1366\" height=\"768\" \/><\/p>\n<p>And then click \u201cCreate New Users\u201d<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38427\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/Create_New_User.png\" alt=\"Create_New_IAM_User\" width=\"1366\" height=\"768\" \/><\/p>\n<p>Specify the name of the IAM user to be created, uncheck \u201cGenerate an access key for each user\u201d (access key(s) are required for giving CLI access to users) and then click \u201cCreate\u201d.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38429\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/IAM_User.png\" alt=\"IAM_New_User\" width=\"1366\" height=\"768\" \/><\/p>\n<p>Now in Opsworks console, select \u201cPermissions\u201d then click Users link below the Edit button.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38430\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/Goto_Import_Users.png\" alt=\"Import_Users\" width=\"1366\" height=\"768\" \/><\/p>\n<p>After getting into Users page<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38431\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/Import_User2.png\" alt=\"Import_User\" width=\"1366\" height=\"768\" \/><\/p>\n<p>Click \u201cImport IAM users to &#8216;Selected_Region_Name&#8217; \u201d<br \/>\nAnd choose the required user.<br \/>\nOr to Import Users from different region<br \/>\nClick Import \u201cOpsWorks users from another region to &#8216;Selected_Region_Name&#8217; \u201d<\/p>\n<p>After importing, it will reflect in the Users list as:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38434\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/imported_editing.png\" alt=\"imported_User\" width=\"1366\" height=\"768\" \/><\/p>\n<p>Click on \u201cedit\u201d to change it\u2019s permissions and to provide its public key for ssh.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38820\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/edited_adding_ssh_key_to_user.png\" alt=\"ssh_key_to_user\" width=\"1366\" height=\"768\" \/><\/p>\n<p>Keep Self Management to \u201cYes\u201d, to put your own \u201cPublic SSH key\u201d.<\/p>\n<p><strong>To generate public key from private key(.pem file)<\/strong> :<\/p>\n<p>[sourcecode language=&#8221;bash&#8221;]<br \/>\nssh-keygen -y -f &lt;path_to_.pem_file&gt; &gt; test_vaibhav.pub<br \/>\ncat test_vaibhav.pub<br \/>\n[\/sourcecode]<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38822\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/edited_pub_ssh_key.png\" alt=\"public_ssh_key\" width=\"1299\" height=\"72\" \/><\/p>\n<p><strong>Granting Permissions:<\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38439\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/Granting_SSH_Permission.png\" alt=\"Granting_SSH_Permission\" width=\"1366\" height=\"768\" \/><\/p>\n<p>The SSH permissions are specific to the Stack(s).<br \/>\nSet Permission level to \u201cIAM Policies Only\u201d and Instance access to \u201cSSH\/RDP\u201d.<\/p>\n<p><strong>Permission level<\/strong> is the amount of access a user has on the stack.<br \/>\n<strong>Deny<\/strong> : It means that to user cannot perform any perform on the stack.<br \/>\n<strong>IAM Policies Only<\/strong> : The user\u2019s access on the stack is limited to the IAM policy applied on it.<br \/>\n<strong>Show<\/strong> : The user has only view access on the stack.<br \/>\n<strong>Deploy<\/strong> : The user has access to deploy app and view the stack.<br \/>\n<strong>Manage<\/strong> : The user has access to stack \u201cPermissions\u201d section, deploying apps and various management actions like modifying layers\/instances, adding or removing resources.<\/p>\n<p><strong>Instance access<\/strong><br \/>\n<strong>SSH\/RDP<\/strong> : Giving SSH\/RDP access to user corresponding to linux\/windows.<br \/>\n<strong>sudo\/admin<\/strong> : Giving sudo\/admin privileges to user respective to linux\/windows.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38440\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/Instance_on_console.png\" alt=\"Instance_on_console\" width=\"1366\" height=\"768\" \/><\/p>\n<p><strong>Now try to ssh into the server :<\/strong><br \/>\nssh -i ~\/.ssh\/[your-keyfile] test_vaibhav@INSTANCE-DNS<br \/>\nand make sure that ssh port is open for your ip in the security group in AWS Console.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38442\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/logging_in.png\" alt=\"logging_in\" width=\"1366\" height=\"768\" \/><\/p>\n<p><strong><span style=\"text-decoration: underline;\">Tip\/Trick:<\/span><\/strong> If you lose .pem file of your EC2 Instance, you can register your Instance with Opsworks, add a new user to it and later modify the keys of your previous user.<\/p>\n<p>Hope after reading this blog you&#8217;ll be comfortable in playing around with &#8220;Permissions&#8221; option in the Opsworks console !<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Opsworks is a wonderful SaaS tool provided by AWS which off-loads human driven tasks like managing own chef server, installing agents on each server, creating ssh user(s) even on run-time for the servers and various other benefits. In this blog an IAM User will be created without any CLI credentials, it will be registered with [&hellip;]<\/p>\n","protected":false},"author":913,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":5,"footnotes":""},"categories":[2348,1],"tags":[248,1935,1167,1343,3815,553],"class_list":["post-38271","post","type-post","status-publish","format-standard","hentry","category-devops-technology","category-technology","tag-aws","tag-aws-opsworks","tag-iam","tag-opsworks","tag-permission","tag-ssh"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Opsworks is a wonderful SaaS tool provided by AWS which off-loads human driven tasks like managing own chef server, installing agents on each server, creating ssh user(s) even on run-time for the servers and various other benefits. In this blog an IAM User will be created without any CLI credentials, it will be registered with\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Vaibhav Gulati\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Creating And Importing IAM User to Opsworks | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Opsworks is a wonderful SaaS tool provided by AWS which off-loads human driven tasks like managing own chef server, installing agents on each server, creating ssh user(s) even on run-time for the servers and various other benefits. In this blog an IAM User will be created without any CLI credentials, it will be registered with\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Creating And Importing IAM User to Opsworks | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Opsworks is a wonderful SaaS tool provided by AWS which off-loads human driven tasks like managing own chef server, installing agents on each server, creating ssh user(s) even on run-time for the servers and various other benefits. In this blog an IAM User will be created without any CLI credentials, it will be registered with\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/ssh-iam-opsworks\\\/#article\",\"name\":\"Creating And Importing IAM User to Opsworks | TO THE NEW Blog\",\"headline\":\"Creating And Importing IAM User to Opsworks\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vaibhav-gulati\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2016\\\/07\\\/click_on_Users.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/ssh-iam-opsworks\\\/#articleImage\"},\"datePublished\":\"2016-08-01T17:39:29+05:30\",\"dateModified\":\"2016-08-01T17:39:29+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/ssh-iam-opsworks\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/ssh-iam-opsworks\\\/#webpage\"},\"articleSection\":\"DevOps, Technology, aws, AWS OpsWorks, IAM, OpsWorks, Permission, ssh\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/ssh-iam-opsworks\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/ssh-iam-opsworks\\\/#listItem\",\"name\":\"Creating And Importing IAM User to Opsworks\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/ssh-iam-opsworks\\\/#listItem\",\"position\":3,\"name\":\"Creating And Importing IAM User to Opsworks\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vaibhav-gulati\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vaibhav-gulati\\\/\",\"name\":\"Vaibhav Gulati\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/ssh-iam-opsworks\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/2b9ee51e-641b-4a74-9334-84a6a7b73f41_vaibhav.gulati@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Vaibhav Gulati\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/ssh-iam-opsworks\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/ssh-iam-opsworks\\\/\",\"name\":\"Creating And Importing IAM User to Opsworks | TO THE NEW Blog\",\"description\":\"Opsworks is a wonderful SaaS tool provided by AWS which off-loads human driven tasks like managing own chef server, installing agents on each server, creating ssh user(s) even on run-time for the servers and various other benefits. In this blog an IAM User will be created without any CLI credentials, it will be registered with\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/ssh-iam-opsworks\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vaibhav-gulati\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vaibhav-gulati\\\/#author\"},\"datePublished\":\"2016-08-01T17:39:29+05:30\",\"dateModified\":\"2016-08-01T17:39:29+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Creating And Importing IAM User to Opsworks | TO THE NEW Blog","description":"Opsworks is a wonderful SaaS tool provided by AWS which off-loads human driven tasks like managing own chef server, installing agents on each server, creating ssh user(s) even on run-time for the servers and various other benefits. In this blog an IAM User will be created without any CLI credentials, it will be registered with","canonical_url":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/#article","name":"Creating And Importing IAM User to Opsworks | TO THE NEW Blog","headline":"Creating And Importing IAM User to Opsworks","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/vaibhav-gulati\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/click_on_Users.png","@id":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/#articleImage"},"datePublished":"2016-08-01T17:39:29+05:30","dateModified":"2016-08-01T17:39:29+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/#webpage"},"articleSection":"DevOps, Technology, aws, AWS OpsWorks, IAM, OpsWorks, Permission, ssh"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/tothenewco.pro\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/#listItem","name":"Creating And Importing IAM User to Opsworks"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/#listItem","position":3,"name":"Creating And Importing IAM User to Opsworks","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/vaibhav-gulati\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/vaibhav-gulati\/","name":"Vaibhav Gulati","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/2b9ee51e-641b-4a74-9334-84a6a7b73f41_vaibhav.gulati@tothenew.com.jpg","width":96,"height":96,"caption":"Vaibhav Gulati"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/","name":"Creating And Importing IAM User to Opsworks | TO THE NEW Blog","description":"Opsworks is a wonderful SaaS tool provided by AWS which off-loads human driven tasks like managing own chef server, installing agents on each server, creating ssh user(s) even on run-time for the servers and various other benefits. In this blog an IAM User will be created without any CLI credentials, it will be registered with","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/vaibhav-gulati\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/vaibhav-gulati\/#author"},"datePublished":"2016-08-01T17:39:29+05:30","dateModified":"2016-08-01T17:39:29+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Creating And Importing IAM User to Opsworks | TO THE NEW Blog","og:description":"Opsworks is a wonderful SaaS tool provided by AWS which off-loads human driven tasks like managing own chef server, installing agents on each server, creating ssh user(s) even on run-time for the servers and various other benefits. In this blog an IAM User will be created without any CLI credentials, it will be registered with","og:url":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Creating And Importing IAM User to Opsworks | TO THE NEW Blog","twitter:description":"Opsworks is a wonderful SaaS tool provided by AWS which off-loads human driven tasks like managing own chef server, installing agents on each server, creating ssh user(s) even on run-time for the servers and various other benefits. In this blog an IAM User will be created without any CLI credentials, it will be registered with","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"38271","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 14:34:13","updated":"2024-02-29 09:16:22","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tCreating And Importing IAM User to Opsworks\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Technology","link":"https:\/\/tothenewco.pro\/blog\/category\/technology\/"},{"label":"Creating And Importing IAM User to Opsworks","link":"https:\/\/tothenewco.pro\/blog\/ssh-iam-opsworks\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/38271","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/913"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=38271"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/38271\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=38271"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=38271"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=38271"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}