{"id":607,"date":"2021-11-11T06:41:59","date_gmt":"2021-11-11T06:41:59","guid":{"rendered":"http:\/\/18.141.20.153\/?p=607"},"modified":"2023-04-28T08:05:29","modified_gmt":"2023-04-28T08:05:29","slug":"aws-developer-tools-to-build-ci-cd-pipeline","status":"publish","type":"post","link":"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/","title":{"rendered":"AWS developer tools to build CI\/CD pipeline"},"content":{"rendered":"<span class=\"rt-reading-time\" style=\"display: block;\"><span class=\"rt-label rt-prefix\">Reading Time: <\/span> <span class=\"rt-time\">4<\/span> <span class=\"rt-label rt-postfix\">minutes<\/span><\/span>\n<p><img src=\"https:\/\/lh5.googleusercontent.com\/k7tdIRDTeS_BWShmDyz_7Ok9tjPp2zX_TLQU61QrpqhVQOVYwPDws-AVVfV15EBaKQe2NbYHOO8za_hykOrg35G_H4JV_hUMzQg3UZ9AtOi1NrXnuoQZeU29RvD8ISujxYdM1IDuE-ANVoH2hg\" style=\"width: 1600px;\"><\/p>\n\n\n\n<p>Building software with consistent quality and being able to deliver new functionality quickly isn\u2019t easy! &nbsp;But by using DevOps as an agile development process and the right development tools, you can make it super easy!! In this blog, we will discuss AWS Developer tools which are playing a key role in CI\/CD approach.<\/p>\n\n\n\n<p>In this blog, we will cover:<\/p>\n\n\n\n<ul><li>What is DevOps?<\/li><li>What is CI\/CD?<\/li><li>Components of a CI\/CD Pipeline<\/li><li>Implementing CI\/CD using AWS development tools<ul><li>AWS CodeCommit<\/li><li>CodeBuild<\/li><li>CodeDeploy<\/li><li>CodePipeline<\/li><\/ul><\/li><li>Benefits of CI\/CD<\/li><li>When is CI\/CD not feasible?<\/li><li>Best Practices of CI\/CD<\/li><li>Litmus tests to see if your team really practices CI\/CD<\/li><\/ul>\n\n\n\n<h2>What is DevOps?<\/h2>\n\n\n\n<p class=\"has-text-align-justify\"><strong>DevOps<\/strong> is an agile development process and mindset that uses agile principles including collaboration, communication, and utilizing the right tools to streamline software building, testing, and release. In our previous blog, we discussed DevOps in detail. If you have missed reading our DevOps blog, here is the link.&nbsp;<\/p>\n\n\n\n<p><a href=\"https:\/\/www.workfall.com\/learning\/blog\/how-to-become-a-successful-aws-devops-engineer\/\">How to become a successful AWS DevOps Engineer?<\/a><\/p>\n\n\n\n<h2>What is CI\/CD?<\/h2>\n\n\n\n<p class=\"has-text-align-justify\"><strong><a href=\"https:\/\/aws.amazon.com\/getting-started\/hands-on\/set-up-ci-cd-pipeline\/\" target=\"_blank\" rel=\"noreferrer noopener\">CI\/CD<\/a><\/strong> stands for the combined practices of <strong>Continuous Integration (CI)<\/strong> and <strong>Continuous Delivery (CD)<\/strong>. It is a DevOps tactic, which makes use of the right automated testing tools to implement agile development where a commit or change to code passes through various automated stage gates, all the way from building and testing to deploying applications, from development to production environments.<\/p>\n\n\n\n<p class=\"has-text-align-justify\"><strong><em>\u201cDevOps channels the entire process right from the idea on a whiteboard until the real product is in the customer\u2019s hands through automated pipelines(CI\/CD).\u201d<\/em><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https:\/\/lh5.googleusercontent.com\/yeX-_Mocs1otWrQHVTJ8dKF1bctY7FoZFoxR20hPDjbfYwIVITPwkB6xspUKMu9Mn1CNwhUr86DouG58FP3aoCxPhrRsk2NRkNwwe4ahmoa8rDX58trZYG9_j8e4elmakb5Q4FYCgXPwfn6lEg\" alt=\"DevOps CI\/CD Pipeline\"\/><\/figure>\n\n\n\n<h2>Components of a CI\/CD Pipeline<\/h2>\n\n\n\n<p>A typical CI\/CD pipeline must include these phases:<\/p>\n\n\n\n<ul><li>Build phase<\/li><li>Testing phase<\/li><li>Deploy phase<\/li><li>Automated testing phase<\/li><li>Deploy to the production phase<\/li><\/ul>\n\n\n\n<p class=\"has-text-align-justify\">In such a pipeline, things started with the developer team writing the initial lines of code. The developers then commit these codes into a version control system, which is the first phase of the pipeline.&nbsp;<\/p>\n\n\n\n<p class=\"has-text-align-justify\">As a linear workflow, the developers will commit new codes and push them to the version control system with an updated version tag.<\/p>\n\n\n\n<h2>Implementing CI\/CD using AWS development tools<\/h2>\n\n\n\n<p class=\"has-text-align-justify\">AWS provides a set of developer tools (CodeCommit, CodeBuild, CodeDeploy, CodePipeline) that can be used to achieve DevOps CI\/CD in a fully-secured, scalable, maintainable, and easy integration environment with existing CI\/CD tools like Ansible, Chef, Puppet, Terraform, etc.<\/p>\n\n\n\n<h2>Benefits of CI\/CD<\/h2>\n\n\n\n<p>If your company practices CI\/CD, it will have a competitive advantage that enables you to:<\/p>\n\n\n\n<p class=\"has-text-align-justify\"><strong>Deliver software with less risk &#8211;<\/strong> CI\/CD pipelines standardize release processes across projects. By testing every change in source code, there are fewer chances of new bugs.&nbsp;<\/p>\n\n\n\n<p class=\"has-text-align-justify\"><strong>Release new features more frequently &#8211; <\/strong>A CI\/CD pipeline can visualize your entire path from commit to production in a single screen. You can navigate across stages, spot inefficiencies, and optimize your process. This process allows you to remove the roadblocks to productivity<\/p>\n\n\n\n<p class=\"has-text-align-justify\"><strong>Deliver the product that clients need<\/strong>. Delivering updates often leads to more client feedback. You can take advantage of that by testing early versions of products with clients. This way you avoid investing too much in features that your customers don\u2019t need, and focus on those that matter.<\/p>\n\n\n\n<p class=\"has-text-align-justify\"><strong>Improve developer productivity.<\/strong> Engineering teams that don\u2019t practice CI\/CD often work under stress as they know that they might get fired for bad deployments and hard-to-fix outages. On the other hand, CI\/CD guides product management to optimize for user impact. Developers deploy code while it\u2019s fresh in their minds. The result is a happy engineering team with high productivity.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https:\/\/lh4.googleusercontent.com\/vIQmmjAhOUTA5BrAYTw8_rcJlfZNXx2MejdIWWaSyKLWPYrB6iasylJFZXYwRPoaVHpN1KJ9smH033yEbRBPq0vpcrISNUsOJ_QTvIVHJBgQDt4CW8YVSy8Cm22RBIcMJFXLj-JVAoo3OzcvWA\" alt=\"Benefits of CI\/CD\"\/><\/figure>\n\n\n\n<h2>When is CI\/CD not feasible?<\/h2>\n\n\n\n<p class=\"has-text-align-justify\">Proponents of CI\/CD claim the benefits of accelerated time to market, improved developer productivity, reduced technical risk, improved quality, and improved customer satisfaction. But CI\/CD implementation demands change in the company\u2019s software development culture. If you are not realistic about the plan and your team is not ready to accept software development culture change, then it\u2019s difficult to adopt CI\/CD!<\/p>\n\n\n\n<p>\u201c<em>Continuous Delivery is great but won\u2019t work with my project<\/em>.\u201d&nbsp;<\/p>\n\n\n\n<p class=\"has-text-align-justify\">There are indeed some cases when CI\/CD may not be a suitable approach, like regulations restricting how software can be updated. For example, continuously updating software used in aerospace, telecom, and medical industries is not an option.<\/p>\n\n\n\n<h2>Best Practices of CI\/CD<\/h2>\n\n\n\n<p>The following are some best practice dos and don\u2019ts for CI\/CD.&nbsp;<\/p>\n\n\n\n<p><strong>Do\u2019s:<\/strong><\/p>\n\n\n\n<ol><li>Treat your infrastructure as code<ol><li>Use version control for your infrastructure code.<\/li><li>Make use of bug tracking and ticketing systems.<\/li><\/ol><\/li><li>Manage project with an integrated team of maximum 10 self-sustaining members<\/li><li>Have all developers commit code to the main trunk frequently, with no long-running feature branches.<\/li><li>Adopt a build system across your organization and standardize builds.<\/li><li>Ensure that unit tests are up-to-date and not neglected.&nbsp;<\/li><li>Establish role-based security controls like who can do what and when<\/li><li>Keep track of standard metrics<ol><li>Number of builds and deployments<\/li><li>Average time for changes to reach production and build time<\/li><\/ol><\/li><li>Use multiple distinct pipelines for each branch and team.<\/li><\/ol>\n\n\n\n<p><strong>Dont\u2019s:<\/strong><\/p>\n\n\n\n<ol><li>Have long-running branches with large complicated merges&nbsp;&nbsp;<\/li><li>Have manual testing processes<\/li><li>Have manual approval processes, code reviews, and security reviews.<\/li><\/ol>\n\n\n\n<h3>Litmus tests to see if your team really practices CI\/CD<\/h3>\n\n\n\n<p class=\"has-text-align-justify\">Test 1 &#8211; Do you need to inform your end-users that you are having a service break because you are doing the update? If yes, then definitely <strong>you are not practicing CI\/CD<\/strong><\/p>\n\n\n\n<p class=\"has-text-align-justify\">Test 2 &#8211; If your developer team can stop what they\u2019re doing right now and ship the current development version of code to production in 30 minutes or less without anyone stressing about what could happen &#8211;&nbsp; congratulations,<strong> you\u2019re practicing CI\/CD!<\/strong><\/p>\n\n\n\n<h2>Conclusion<\/h2>\n\n\n\n<p class=\"has-text-align-justify\">In this blog, you have seen how easily we can set up and manage an entire CI\/CD pipeline in AWS accounts using the native AWS suite of CI\/CD services, where a commit or change to code passes through various automated stage gates all the way from building and testing to deploying applications, from development to production environments.<\/p>\n\n\n\n<p>Meanwhile \u2026<\/p>\n\n\n\n<p><strong>Keep Exploring -&gt; Keep Learning -&gt; Keep Mastering<\/strong><\/p>\n\n\n\n<p class=\"has-text-align-justify\">This blog is part of our effort towards building a knowledgeable and kick-ass tech community. At <a href=\"https:\/\/www.workfall.com\/\">Workfall<\/a>, we strive to provide the best tech and pay opportunities to AWS-certified talents. If you\u2019re looking to work with global clients, build kick-ass products while making big bucks doing so, give it a shot at <a href=\"https:\/\/www.workfall.com\/partner\/\">workfall.com\/partner<\/a> today.<\/p>\n","protected":false},"excerpt":{"rendered":"<p><span class=\"rt-reading-time\" style=\"display: block;\"><span class=\"rt-label rt-prefix\">Reading Time: <\/span> <span class=\"rt-time\">4<\/span> <span class=\"rt-label rt-postfix\">minutes<\/span><\/span> Building software with consistent quality and being able to deliver new functionality quickly isn\u2019t easy! &nbsp;But by using DevOps as an agile development process and the right development tools, you can make it super easy!! In this blog, we will discuss AWS Developer tools which are playing a key role in CI\/CD approach. In this [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":608,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"spay_email":""},"categories":[2],"tags":[3,198,195,196,4,197,6],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>AWS developer tools to build CI\/CD pipeline - The Workfall Blog<\/title>\n<meta name=\"description\" content=\"AWS provides a set of tools to achieve DevOps CI\/CD in a fully-secured environment with existing CI\/CD tools like Ansible, &amp; Chef, etc.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AWS developer tools to build CI\/CD pipeline - The Workfall Blog\" \/>\n<meta property=\"og:description\" content=\"AWS provides a set of tools to achieve DevOps CI\/CD in a fully-secured environment with existing CI\/CD tools like Ansible, &amp; Chef, etc.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/\" \/>\n<meta property=\"og:site_name\" content=\"The Workfall Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/workfall\" \/>\n<meta property=\"article:published_time\" content=\"2021-11-11T06:41:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-28T08:05:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2021\/11\/CI_CD.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@workfall\" \/>\n<meta name=\"twitter:site\" content=\"@workfall\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Workfall\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/#organization\",\"name\":\"Workfall - Hire #Kickass Coders On Demand\",\"url\":\"https:\/\/learning.workfall.com\/learning\/blog\/\",\"sameAs\":[\"https:\/\/www.instagram.com\/workfall\/\",\"https:\/\/www.linkedin.com\/company\/workfall\/\",\"https:\/\/facebook.com\/workfall\",\"https:\/\/twitter.com\/workfall\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/i1.wp.com\/18.141.20.153\/learning\/blog\/wp-content\/uploads\/2021\/10\/cropped-WF_logo.png?fit=400%2C400\",\"contentUrl\":\"https:\/\/i1.wp.com\/18.141.20.153\/learning\/blog\/wp-content\/uploads\/2021\/10\/cropped-WF_logo.png?fit=400%2C400\",\"width\":400,\"height\":400,\"caption\":\"Workfall - Hire #Kickass Coders On Demand\"},\"image\":{\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/#website\",\"url\":\"https:\/\/learning.workfall.com\/learning\/blog\/\",\"name\":\"The Workfall Blog\",\"description\":\"#Tech #Remote #Jobs\",\"publisher\":{\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/learning.workfall.com\/learning\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#primaryimage\",\"url\":\"https:\/\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2021\/11\/CI_CD.png\",\"contentUrl\":\"https:\/\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2021\/11\/CI_CD.png\",\"width\":1200,\"height\":628,\"caption\":\"AWS developer tools to build CI\/CD pipeline\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#webpage\",\"url\":\"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/\",\"name\":\"AWS developer tools to build CI\/CD pipeline - The Workfall Blog\",\"isPartOf\":{\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#primaryimage\"},\"datePublished\":\"2021-11-11T06:41:59+00:00\",\"dateModified\":\"2023-04-28T08:05:29+00:00\",\"description\":\"AWS provides a set of tools to achieve DevOps CI\/CD in a fully-secured environment with existing CI\/CD tools like Ansible, & Chef, etc.\",\"breadcrumb\":{\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/learning.workfall.com\/learning\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AWS developer tools to build CI\/CD pipeline\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#webpage\"},\"author\":{\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/#\/schema\/person\/cab8236044692bc5b27606b13167794a\"},\"headline\":\"AWS developer tools to build CI\/CD pipeline\",\"datePublished\":\"2021-11-11T06:41:59+00:00\",\"dateModified\":\"2023-04-28T08:05:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#webpage\"},\"wordCount\":1080,\"publisher\":{\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2021\/11\/CI_CD.png\",\"keywords\":[\"AWS\",\"AWS developer tools\",\"CI\/CD\",\"CI\/CD pipeline\",\"Cloud\",\"development pipeline\",\"workfall\"],\"articleSection\":[\"AWS Cloud Computing\"],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/#\/schema\/person\/cab8236044692bc5b27606b13167794a\",\"name\":\"Workfall\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/learning.workfall.com\/learning\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2023\/09\/avatar_user_1_1693914404-96x96.png\",\"contentUrl\":\"https:\/\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2023\/09\/avatar_user_1_1693914404-96x96.png\",\"caption\":\"Workfall\"},\"sameAs\":[\"https:\/\/www.workfall.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"AWS developer tools to build CI\/CD pipeline - The Workfall Blog","description":"AWS provides a set of tools to achieve DevOps CI\/CD in a fully-secured environment with existing CI\/CD tools like Ansible, & Chef, etc.","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:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/","og_locale":"en_US","og_type":"article","og_title":"AWS developer tools to build CI\/CD pipeline - The Workfall Blog","og_description":"AWS provides a set of tools to achieve DevOps CI\/CD in a fully-secured environment with existing CI\/CD tools like Ansible, & Chef, etc.","og_url":"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/","og_site_name":"The Workfall Blog","article_publisher":"https:\/\/facebook.com\/workfall","article_published_time":"2021-11-11T06:41:59+00:00","article_modified_time":"2023-04-28T08:05:29+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2021\/11\/CI_CD.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_creator":"@workfall","twitter_site":"@workfall","twitter_misc":{"Written by":"Workfall","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/learning.workfall.com\/learning\/blog\/#organization","name":"Workfall - Hire #Kickass Coders On Demand","url":"https:\/\/learning.workfall.com\/learning\/blog\/","sameAs":["https:\/\/www.instagram.com\/workfall\/","https:\/\/www.linkedin.com\/company\/workfall\/","https:\/\/facebook.com\/workfall","https:\/\/twitter.com\/workfall"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/learning.workfall.com\/learning\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/i1.wp.com\/18.141.20.153\/learning\/blog\/wp-content\/uploads\/2021\/10\/cropped-WF_logo.png?fit=400%2C400","contentUrl":"https:\/\/i1.wp.com\/18.141.20.153\/learning\/blog\/wp-content\/uploads\/2021\/10\/cropped-WF_logo.png?fit=400%2C400","width":400,"height":400,"caption":"Workfall - Hire #Kickass Coders On Demand"},"image":{"@id":"https:\/\/learning.workfall.com\/learning\/blog\/#\/schema\/logo\/image\/"}},{"@type":"WebSite","@id":"https:\/\/learning.workfall.com\/learning\/blog\/#website","url":"https:\/\/learning.workfall.com\/learning\/blog\/","name":"The Workfall Blog","description":"#Tech #Remote #Jobs","publisher":{"@id":"https:\/\/learning.workfall.com\/learning\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/learning.workfall.com\/learning\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#primaryimage","url":"https:\/\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2021\/11\/CI_CD.png","contentUrl":"https:\/\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2021\/11\/CI_CD.png","width":1200,"height":628,"caption":"AWS developer tools to build CI\/CD pipeline"},{"@type":"WebPage","@id":"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#webpage","url":"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/","name":"AWS developer tools to build CI\/CD pipeline - The Workfall Blog","isPartOf":{"@id":"https:\/\/learning.workfall.com\/learning\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#primaryimage"},"datePublished":"2021-11-11T06:41:59+00:00","dateModified":"2023-04-28T08:05:29+00:00","description":"AWS provides a set of tools to achieve DevOps CI\/CD in a fully-secured environment with existing CI\/CD tools like Ansible, & Chef, etc.","breadcrumb":{"@id":"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/learning.workfall.com\/learning\/blog\/"},{"@type":"ListItem","position":2,"name":"AWS developer tools to build CI\/CD pipeline"}]},{"@type":"Article","@id":"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#article","isPartOf":{"@id":"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#webpage"},"author":{"@id":"https:\/\/learning.workfall.com\/learning\/blog\/#\/schema\/person\/cab8236044692bc5b27606b13167794a"},"headline":"AWS developer tools to build CI\/CD pipeline","datePublished":"2021-11-11T06:41:59+00:00","dateModified":"2023-04-28T08:05:29+00:00","mainEntityOfPage":{"@id":"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#webpage"},"wordCount":1080,"publisher":{"@id":"https:\/\/learning.workfall.com\/learning\/blog\/#organization"},"image":{"@id":"https:\/\/learning.workfall.com\/learning\/blog\/aws-developer-tools-to-build-ci-cd-pipeline\/#primaryimage"},"thumbnailUrl":"https:\/\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2021\/11\/CI_CD.png","keywords":["AWS","AWS developer tools","CI\/CD","CI\/CD pipeline","Cloud","development pipeline","workfall"],"articleSection":["AWS Cloud Computing"],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/learning.workfall.com\/learning\/blog\/#\/schema\/person\/cab8236044692bc5b27606b13167794a","name":"Workfall","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/learning.workfall.com\/learning\/blog\/#\/schema\/person\/image\/","url":"https:\/\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2023\/09\/avatar_user_1_1693914404-96x96.png","contentUrl":"https:\/\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2023\/09\/avatar_user_1_1693914404-96x96.png","caption":"Workfall"},"sameAs":["https:\/\/www.workfall.com"]}]}},"jetpack_featured_media_url":"https:\/\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2021\/11\/CI_CD.png","jetpack-related-posts":[{"id":361,"url":"https:\/\/learning.workfall.com\/learning\/blog\/how-to-create-ci-cd-workflow-using-aws-codestar\/","url_meta":{"origin":607,"position":0},"title":"How to create CI\/CD workflow using AWS CodeStar?","date":"November 3, 2021","format":false,"excerpt":"DevOps and CI\/CD are the future of software development. AWS CodeStar makes building a full CI\/CD workflow easier and helps us to create a CI\/CD toolchain using AWS developer tools - CodeCommit, CodeBuild, and CodePipeline In this blog we will demonstrate how to create CI\/CD workflow using AWS CodeStar. Before\u2026","rel":"","context":"In &quot;AWS Cloud Computing&quot;","img":{"alt_text":"Create CI\/CD workflow using AWS CodeStar","src":"https:\/\/i2.wp.com\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2021\/11\/CodeStar.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":197,"url":"https:\/\/learning.workfall.com\/learning\/blog\/how-to-build-a-ros-ci-pipeline-using-aws-robomaker-and-codepipeline\/","url_meta":{"origin":607,"position":1},"title":"How to build a ROS CI Pipeline using AWS Robomaker and CodePipeline?","date":"October 27, 2021","format":false,"excerpt":"AWS RoboMaker is the most complete cloud solution for robotic developers to simulate, test, and securely deploy robotic applications at scale. RoboMaker's managed ROS and Gazebo software stacks free up engineering resources and enable you to start building quickly. In this blog, we will navigate through the AWS Robomaker service\u2026","rel":"","context":"In &quot;AWS Cloud Computing&quot;","img":{"alt_text":"AWS RoboMaker - Workfall","src":"https:\/\/i1.wp.com\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2021\/10\/RoboMaker-1200-x-628-px.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":639,"url":"https:\/\/learning.workfall.com\/learning\/blog\/ros-ci-pipeline-using-aws-robomaker-and-codepipelinepart-1\/","url_meta":{"origin":607,"position":2},"title":"How to build a ROS CI Pipeline using AWS RoboMaker and CodePipeline(Part 1)?","date":"November 11, 2021","format":false,"excerpt":"Robots are being used more widely in society for increasingly sophisticated functions like picking and packing, last-mile delivery, complex assembly, search and rescue, environmental monitoring, and assisted surgery. Robots are utilized for commercial logistics and consumer cleaning, distribution, and companionship in the autonomous mobile robot (AMR) and autonomous ground vehicle\u2026","rel":"","context":"In &quot;AWS Cloud Computing&quot;","img":{"alt_text":"AWS RoboMaker - Workfall","src":"https:\/\/i2.wp.com\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2021\/11\/RoboMaker1.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":620,"url":"https:\/\/learning.workfall.com\/learning\/blog\/how-to-become-a-successful-aws-devops-engineer\/","url_meta":{"origin":607,"position":3},"title":"How to Become a Successful AWS DevOps Engineer?","date":"November 11, 2021","format":false,"excerpt":"In the last couple of years, we have seen a great shift in computation and also software development life cycles. Thus we see a huge demand for DevOps as well as AWS. As a result, the career opportunities for an AWS DevOps Engineer are highly promising. If you want to\u2026","rel":"","context":"In &quot;DevOps&quot;","img":{"alt_text":"How to Become AWS DevOps Engineer","src":"https:\/\/i2.wp.com\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2021\/11\/DevOps.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":492,"url":"https:\/\/learning.workfall.com\/learning\/blog\/how-to-set-up-aws-copilot-to-build-release-and-operate-containerized-applications-on-ecs-and-fargate-using-a-cli-2\/","url_meta":{"origin":607,"position":4},"title":"How to set up AWS Copilot to build, release and operate containerized applications on ECS and Fargate using a CLI?","date":"November 10, 2021","format":false,"excerpt":"Are you completely drained by worrying about your infrastructure over architecture? Well, AWS Copilot supercharges your application by allowing you to set up infrastructure, build your application with many microservices, set up a pipeline to automate release and monitor the stack and application's status, and add-ons all from a single\u2026","rel":"","context":"In &quot;AWS Cloud Computing&quot;","img":{"alt_text":"AWS Copilot - Workfall","src":"https:\/\/i1.wp.com\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2021\/11\/copilot1.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":1573,"url":"https:\/\/learning.workfall.com\/learning\/blog\/platform-engineering-predictions-and-prospects-in-2023-beyond\/","url_meta":{"origin":607,"position":5},"title":"Platform Engineering: Predictions and Prospects in 2023 & Beyond","date":"February 14, 2023","format":false,"excerpt":"Platform Engineering has received a lot of attention, but there is some misunderstanding about what it is and, perhaps more importantly, how it differs from more well-known disciplines like SRE and DevOps. Platform Engineering is the rebranded DevOps or it is the next stage of DevOps evolution? Why suddenly everyone\u2026","rel":"","context":"In &quot;DevOps&quot;","img":{"alt_text":"Platform Engineering","src":"https:\/\/i1.wp.com\/learning.workfall.com\/learning\/blog\/wp-content\/uploads\/2023\/02\/Cover-Images_Part2-1-1.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]}],"_links":{"self":[{"href":"https:\/\/learning.workfall.com\/learning\/blog\/wp-json\/wp\/v2\/posts\/607"}],"collection":[{"href":"https:\/\/learning.workfall.com\/learning\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/learning.workfall.com\/learning\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/learning.workfall.com\/learning\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/learning.workfall.com\/learning\/blog\/wp-json\/wp\/v2\/comments?post=607"}],"version-history":[{"count":6,"href":"https:\/\/learning.workfall.com\/learning\/blog\/wp-json\/wp\/v2\/posts\/607\/revisions"}],"predecessor-version":[{"id":1826,"href":"https:\/\/learning.workfall.com\/learning\/blog\/wp-json\/wp\/v2\/posts\/607\/revisions\/1826"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/learning.workfall.com\/learning\/blog\/wp-json\/wp\/v2\/media\/608"}],"wp:attachment":[{"href":"https:\/\/learning.workfall.com\/learning\/blog\/wp-json\/wp\/v2\/media?parent=607"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/learning.workfall.com\/learning\/blog\/wp-json\/wp\/v2\/categories?post=607"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/learning.workfall.com\/learning\/blog\/wp-json\/wp\/v2\/tags?post=607"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}