{"id":8127,"date":"2024-08-22T23:30:49","date_gmt":"2024-08-22T18:00:49","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=8127"},"modified":"2024-08-22T23:30:52","modified_gmt":"2024-08-22T18:00:52","slug":"how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/","title":{"rendered":"How to install and Create the AWS infrastructure using Terraform in Ubuntu 22.04"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>Introduction<\/strong><\/h2>\n\n\n\n<p>Terraform is\u00a0one of the most popular Infrastructure-as-code (IaC) tool, used by DevOps teams to automate infrastructure tasks. It is used to automate the provisioning of your cloud resources. Terraform is an open-source, cloud-agnostic provisioning tool developed by HashiCorp and written in GO language.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>STEP 1:<\/strong><\/h2>\n\n\n\n<p>Create one EC2 instance in AWS based on the requirements.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>STEP 2:<\/strong><\/h2>\n\n\n\n<p>Login to the server and download the terraform using the official link: <a href=\"https:\/\/developer.hashicorp.com\/terraform\/install\">https:\/\/developer.hashicorp.com\/terraform\/install<\/a><\/p>\n\n\n\n<p>We can download Terraform based on the Operating system.<\/p>\n\n\n\n<p>For ex: Linux (Ubuntu\/Debian)<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>wget -O- https:\/\/apt.releases.hashicorp.com\/gpg | sudo gpg &#8211;dearmor -o \/usr\/share\/keyrings\/hashicorp-archive-keyring.gpg<br>echo &#8220;deb [signed-by=\/usr\/share\/keyrings\/hashicorp-archive-keyring.gpg] https:\/\/apt.releases.hashicorp.com $(lsb_release -cs) main&#8221; | sudo tee \/etc\/apt\/sources.list.d\/hashicorp.list<br>sudo apt update &amp;&amp; sudo apt install terraform<br><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>STEP 3:<\/strong><\/h2>\n\n\n\n<p>Check the version using the below command.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>terraform \u2013version<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>STEP 4:<\/strong><\/h2>\n\n\n\n<p>Using Terraform we can create infrastructure for GCP, AWS, KUBERNETES, Azure, Alibaba Cloud and ORACLE Cloud infrastructure.<\/p>\n\n\n\n<p>Now we are going to create AWS infrastructure using Terraform.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>STEP 5:<\/strong><\/h2>\n\n\n\n<p>In the Terraform official website there is an option called Registry In that option there are multiple cloud providers. Now we are going to create infrastructure in AWS. Click on AWS.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>STEP 6:<\/strong><\/h2>\n\n\n\n<p>Download the VisualStudio code and create one file in the example.tf format<\/p>\n\n\n\n<p>Now we are going to create code for VPC creation in AWS.<\/p>\n\n\n\n<p>Below is the sample code for EC2 creation In the Terraform official website there is an option called Registry under this we can select the provider under that there is an option called Documentation. We need to select the stable version. We can get the sample code for all Infrastructure creation like EC2, VPC, SG, Nategateway, Internet gateway, subnet, route table, s3, IAM.. etc<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>STEP 7:<\/strong><\/h2>\n\n\n\n<p>We need to configure AWS CLI in server using below command.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>apt install awscli<\/strong><br><strong>aws configure<\/strong><\/td><\/tr><\/tbody><\/table><figcaption class=\"wp-element-caption\">After this command we need to mention the access key and secret access key or another way we can create a roles with ec2 full access and attach the role to the ec2 instance.<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>STEP 8:<\/strong><\/h2>\n\n\n\n<p>In the server create one directory under that directory create one file example.tf.<\/p>\n\n\n\n<p>Copy the below code inside the example.tf.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td># Terraform Block<br>terraform {<br>\u00a0 required_providers {<br>\u00a0\u00a0\u00a0 aws = {<br>\u00a0\u00a0\u00a0\u00a0\u00a0 source\u00a0 = &#8220;hashicorp\/aws&#8221;<br>\u00a0\u00a0\u00a0\u00a0\u00a0 version = &#8220;~&gt; 3.0&#8221;<br>\u00a0\u00a0\u00a0 }<br>\u00a0 }<br>}<br>\u00a0<br># Provider Block<br>provider &#8220;aws&#8221; {<br>\u00a0 region\u00a0 = &#8220;ap-south-1&#8221;<br>\u00a0 profile = &#8220;default&#8221;<br>}<br>\u00a0<br># Create EC2 Instance<br>resource &#8220;aws_instance&#8221; &#8220;my-ec2-vm&#8221; {<br>\u00a0 ami\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 = &#8220;ami-079b5e5b3971bd10d&#8221;<br>\u00a0 instance_type\u00a0\u00a0\u00a0\u00a0 = &#8220;t2.micro&#8221;<br>\u00a0 availability_zone = &#8220;ap-south-1b&#8221;<br>\u00a0 #availability_zone = &#8220;ap-south-1a&#8221;<br>\u00a0 tags = {<br>\u00a0\u00a0\u00a0 &#8220;Name&#8221; = &#8220;web&#8221;<br>\u00a0\u00a0\u00a0 &#8220;tag1&#8221; = &#8220;Update-test-1&#8221;\u00a0\u00a0\u00a0<br>\u00a0 }<br>}<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>STEP 9:<\/strong><\/h2>\n\n\n\n<p>The Terraform init prepares your working directory for use with Terraform, ensuring that all necessary dependencies are available and correctly configured.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>terraform init<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>STEP 10:<\/strong><\/h2>\n\n\n\n<p>The purpose of the below command is to preview the changes Terraform will make to your infrastructure, without actually applying them.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>terraform plan<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>STEP 11:<\/strong><\/h2>\n\n\n\n<p>The terraform apply is the command that actually makes changes to your infrastructure, based on the execution plan you&#8217;ve created and confirmed.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>terraform apply<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>STEP 12:<\/strong><\/h2>\n\n\n\n<p>The Terraform destroy is a powerful command that completely removes all resources managed by Terraform. It should be used with care, especially in production environments, as it will permanently delete infrastructure<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>terraform destroy<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Terraform is a robust and flexible tool for managing infrastructure as code. Its ability to work across multiple cloud providers, its clear execution plans, and its state management make it a vital tool for modern DevOps practices. Whether you&#8217;re managing small environments or large-scale infrastructure, Terraform provides the tools needed to define, deploy, and maintain infrastructure efficiently and reliably.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Terraform is\u00a0one of the most popular Infrastructure-as-code (IaC) tool, used by DevOps teams to automate infrastructure tasks. It is used to automate the provisioning of your cloud resources. Terraform is an open-source, cloud-agnostic provisioning tool developed by HashiCorp and written in GO language. STEP 1: Create one EC2 instance&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to install and Create the AWS infrastructure using Terraform in Ubuntu 22.04<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":510,"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-8127","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-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/\" \/>\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 Terraform is\u00a0one of the most popular Infrastructure-as-code (IaC) tool, used by DevOps teams to automate infrastructure tasks. It is used to automate the provisioning of your cloud resources. Terraform is an open-source, cloud-agnostic provisioning tool developed by HashiCorp and written in GO language. STEP 1: Create one EC2 instance&hellip; Continue Reading How to install and Create the AWS infrastructure using Terraform in Ubuntu 22.04\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/\" \/>\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-08-22T18:00:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-22T18:00:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Naveen Prasad\" \/>\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=\"Naveen Prasad\" \/>\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-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\\\/\"},\"author\":{\"name\":\"Naveen Prasad\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e0b107d557060d31788b0abd1965e55\"},\"headline\":\"How to install and Create the AWS infrastructure using Terraform in Ubuntu 22.04\",\"datePublished\":\"2024-08-22T18:00:49+00:00\",\"dateModified\":\"2024-08-22T18:00:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\\\/\"},\"wordCount\":600,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2024-08-22T18:00:49+00:00\",\"dateModified\":\"2024-08-22T18:00:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install and Create the AWS infrastructure using Terraform in Ubuntu 22.04\"}]},{\"@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\\\/7e0b107d557060d31788b0abd1965e55\",\"name\":\"Naveen Prasad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c040d480588ba05e6689aa14fcc899bd3507bbd0fd2e7f7ee38e6b6b8e264f6e?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c040d480588ba05e6689aa14fcc899bd3507bbd0fd2e7f7ee38e6b6b8e264f6e?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c040d480588ba05e6689aa14fcc899bd3507bbd0fd2e7f7ee38e6b6b8e264f6e?s=96&r=g\",\"caption\":\"Naveen Prasad\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/naveen-prasad\\\/\"}]}<\/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-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction Terraform is\u00a0one of the most popular Infrastructure-as-code (IaC) tool, used by DevOps teams to automate infrastructure tasks. It is used to automate the provisioning of your cloud resources. Terraform is an open-source, cloud-agnostic provisioning tool developed by HashiCorp and written in GO language. STEP 1: Create one EC2 instance&hellip; Continue Reading How to install and Create the AWS infrastructure using Terraform in Ubuntu 22.04","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2024-08-22T18:00:49+00:00","article_modified_time":"2024-08-22T18:00:52+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"Naveen Prasad","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"Naveen Prasad","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/"},"author":{"name":"Naveen Prasad","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/7e0b107d557060d31788b0abd1965e55"},"headline":"How to install and Create the AWS infrastructure using Terraform in Ubuntu 22.04","datePublished":"2024-08-22T18:00:49+00:00","dateModified":"2024-08-22T18:00:52+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/"},"wordCount":600,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2024-08-22T18:00:49+00:00","dateModified":"2024-08-22T18:00:52+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-and-create-the-aws-infrastructure-using-terraform-in-ubuntu-22-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install and Create the AWS infrastructure using Terraform in Ubuntu 22.04"}]},{"@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\/7e0b107d557060d31788b0abd1965e55","name":"Naveen Prasad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c040d480588ba05e6689aa14fcc899bd3507bbd0fd2e7f7ee38e6b6b8e264f6e?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c040d480588ba05e6689aa14fcc899bd3507bbd0fd2e7f7ee38e6b6b8e264f6e?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c040d480588ba05e6689aa14fcc899bd3507bbd0fd2e7f7ee38e6b6b8e264f6e?s=96&r=g","caption":"Naveen Prasad"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/naveen-prasad\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-275","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8127","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\/510"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=8127"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8127\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=8127"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=8127"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=8127"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}