{"id":7968,"date":"2024-06-28T19:37:49","date_gmt":"2024-06-28T14:07:49","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=7968"},"modified":"2024-06-28T19:37:51","modified_gmt":"2024-06-28T14:07:51","slug":"how-to-launch-a-new-aws-instance-via-cli","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/","title":{"rendered":"How to launch a new AWS instance via CLI?"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\"><strong>Introduction:<\/strong><\/h3>\n\n\n\n<p>Amazon Web Services (AWS) provides a comprehensive set of cloud computing services that allow users to launch and manage virtual servers, known as instances, through the AWS Management Console, AWS CLI, and other tools. Using the AWS Command Line Interface (CLI) is a powerful way to automate the management of AWS resources.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Prerequisites:<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>AWS CLI is installed and configured with your AWS credentials.<\/li>\n\n\n\n<li>Basic understanding of AWS EC2 and related terminology.<\/li>\n<\/ol>\n\n\n\n<p><strong>Step1:<\/strong><\/p>\n\n\n\n<p>Ensure AWS CLI is configured with the necessary credentials and default region. If not already done, we can configure it with the below command.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>aws configure<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-10.png\"><img loading=\"lazy\" decoding=\"async\" width=\"996\" height=\"171\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-10.png\" alt=\"\" class=\"wp-image-7995\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-10.png 996w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-10-300x52.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-10-768x132.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-10-850x146.png 850w\" sizes=\"auto, (max-width: 996px) 100vw, 996px\" \/><\/a><\/figure>\n\n\n\n<p><strong>Step2:<\/strong><\/p>\n\n\n\n<p>Use the following command to list available AMIs. For example, to list Ubuntu AMIs<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>aws ec2 describe-images &#8211;owners 099720109477 &#8211;filters &#8220;Name=name,Values=ubuntu\/images\/hvm-ssd\/ubuntu-<em>*-<\/em>*-amd64-server-*<em>&#8221; &#8211;query &#8220;Images<\/em>[*].[ImageId,Name,Description,CreationDate]&#8221; &#8211;output table &#8211;region ap-south-1<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-12.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"340\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-12-1024x340.png\" alt=\"\" class=\"wp-image-7997\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-12-1024x340.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-12-300x100.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-12-768x255.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-12-1536x510.png 1536w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-12-850x282.png 850w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-12.png 1918w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p><strong>Step3:<\/strong><\/p>\n\n\n\n<p>Use the &#8220;<code>run-instances<\/code>&#8221; command to launch a new instance. Replace <code>&lt;ami-id&gt;<\/code> with the chosen AMI ID and specify the instance type and other parameters as needed.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>aws ec2 run-instances &#8211;image-id &lt;ami-id&gt; &#8211;count 1 &#8211;instance-type t2.micro &#8211;key-name &lt;key-pair-name&gt; &#8211;security-group-ids &lt;security-group-id&gt; &#8211;subnet-id &lt;subnet-id&gt; &#8211;region ap-south-1<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-3.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"119\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-3-1024x119.png\" alt=\"\" class=\"wp-image-7972\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-3-1024x119.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-3-300x35.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-3-768x89.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-3-1536x178.png 1536w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-3-850x98.png 850w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-3.png 1598w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-13.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"534\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-13-1024x534.png\" alt=\"\" class=\"wp-image-7998\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-13-1024x534.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-13-300x157.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-13-768x401.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-13-1536x802.png 1536w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-13-575x300.png 575w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-13.png 1918w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p><strong>Step 4:<\/strong><\/p>\n\n\n\n<p>Tag your instance to easily identify it later:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>aws ec2 create-tags &lt;instance-id&gt; &#8211;resources &#8211;tags Key=Name,Value=MyInstance<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-5.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"159\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-5-1024x159.png\" alt=\"\" class=\"wp-image-7974\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-5-1024x159.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-5-300x47.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-5-768x120.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-5-1536x239.png 1536w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-5-850x132.png 850w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-5.png 1587w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-14.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"36\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-14-1024x36.png\" alt=\"\" class=\"wp-image-7999\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-14-1024x36.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-14-300x11.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-14-768x27.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-14-1536x54.png 1536w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-14-850x30.png 850w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-14.png 1797w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Conclusion:<\/strong><\/h3>\n\n\n\n<p>Using the AWS CLI to manage EC2 instances offers a powerful and flexible way to automate cloud infrastructure tasks. Following this guide, we have learned how to launch a new EC2 instance using the AWS CLI.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction: Amazon Web Services (AWS) provides a comprehensive set of cloud computing services that allow users to launch and manage virtual servers, known as instances, through the AWS Management Console, AWS CLI, and other tools. Using the AWS Command Line Interface (CLI) is a powerful way to automate the management&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to launch a new AWS instance via CLI?<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":496,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-7968","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction: Amazon Web Services (AWS) provides a comprehensive set of cloud computing services that allow users to launch and manage virtual servers, known as instances, through the AWS Management Console, AWS CLI, and other tools. Using the AWS Command Line Interface (CLI) is a powerful way to automate the management&hellip; Continue Reading How to launch a new AWS instance via CLI?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-06-28T14:07:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-28T14:07:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-10.png\" \/>\n<meta name=\"author\" content=\"Saikrishna Areddy\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Saikrishna Areddy\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-launch-a-new-aws-instance-via-cli\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-launch-a-new-aws-instance-via-cli\\\/\"},\"author\":{\"name\":\"Saikrishna Areddy\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/fc35ace8f00b25766f1de0edb110bbe1\"},\"headline\":\"How to launch a new AWS instance via CLI?\",\"datePublished\":\"2024-06-28T14:07:49+00:00\",\"dateModified\":\"2024-06-28T14:07:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-launch-a-new-aws-instance-via-cli\\\/\"},\"wordCount\":256,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-launch-a-new-aws-instance-via-cli\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/image-10.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-launch-a-new-aws-instance-via-cli\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-launch-a-new-aws-instance-via-cli\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-launch-a-new-aws-instance-via-cli\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-launch-a-new-aws-instance-via-cli\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-launch-a-new-aws-instance-via-cli\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/image-10.png\",\"datePublished\":\"2024-06-28T14:07:49+00:00\",\"dateModified\":\"2024-06-28T14:07:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-launch-a-new-aws-instance-via-cli\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-launch-a-new-aws-instance-via-cli\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-launch-a-new-aws-instance-via-cli\\\/#primaryimage\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/image-10.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/image-10.png\",\"width\":996,\"height\":171},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-launch-a-new-aws-instance-via-cli\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to launch a new AWS instance via CLI?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/fc35ace8f00b25766f1de0edb110bbe1\",\"name\":\"Saikrishna Areddy\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/219fb50fa61a168b58a5e704d05058f958504aa8324675172185e3f0e8b3fd24?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/219fb50fa61a168b58a5e704d05058f958504aa8324675172185e3f0e8b3fd24?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/219fb50fa61a168b58a5e704d05058f958504aa8324675172185e3f0e8b3fd24?s=96&r=g\",\"caption\":\"Saikrishna Areddy\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/saikrishna\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction: Amazon Web Services (AWS) provides a comprehensive set of cloud computing services that allow users to launch and manage virtual servers, known as instances, through the AWS Management Console, AWS CLI, and other tools. Using the AWS Command Line Interface (CLI) is a powerful way to automate the management&hellip; Continue Reading How to launch a new AWS instance via CLI?","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2024-06-28T14:07:49+00:00","article_modified_time":"2024-06-28T14:07:51+00:00","og_image":[{"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-10.png","type":"","width":"","height":""}],"author":"Saikrishna Areddy","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"Saikrishna Areddy","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/"},"author":{"name":"Saikrishna Areddy","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/fc35ace8f00b25766f1de0edb110bbe1"},"headline":"How to launch a new AWS instance via CLI?","datePublished":"2024-06-28T14:07:49+00:00","dateModified":"2024-06-28T14:07:51+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/"},"wordCount":256,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/#primaryimage"},"thumbnailUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-10.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/#primaryimage"},"thumbnailUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-10.png","datePublished":"2024-06-28T14:07:49+00:00","dateModified":"2024-06-28T14:07:51+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/#primaryimage","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-10.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/06\/image-10.png","width":996,"height":171},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-launch-a-new-aws-instance-via-cli\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to launch a new AWS instance via CLI?"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/fc35ace8f00b25766f1de0edb110bbe1","name":"Saikrishna Areddy","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/219fb50fa61a168b58a5e704d05058f958504aa8324675172185e3f0e8b3fd24?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/219fb50fa61a168b58a5e704d05058f958504aa8324675172185e3f0e8b3fd24?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/219fb50fa61a168b58a5e704d05058f958504aa8324675172185e3f0e8b3fd24?s=96&r=g","caption":"Saikrishna Areddy"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/saikrishna\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-24w","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/7968","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/496"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=7968"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/7968\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=7968"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=7968"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=7968"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}