{"id":76330,"date":"2025-09-12T13:12:55","date_gmt":"2025-09-12T07:42:55","guid":{"rendered":"https:\/\/www.tothenew.com\/blog\/?p=76330"},"modified":"2025-09-17T11:55:39","modified_gmt":"2025-09-17T06:25:39","slug":"building-a-packer-golden-image-using-aws-build-pipeline","status":"publish","type":"post","link":"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/","title":{"rendered":"Building a Packer Golden Image Using AWS Build Pipeline"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>In modern infrastructure and application delivery workflows, golden images play an important role in ensuring consistency, security, and repeatability. A golden image is a pre-baked machine image that contains the required operating system, configurations, and application dependencies, making it easier to launch new instances with a known-good baseline.<\/p>\n<p>This article walks through how to set up an<strong> AWS build pipeline<\/strong> to automate the creation of golden images using <strong>HashiCorp Packer<\/strong>.<\/p>\n<h2>Body<\/h2>\n<p><strong>Why Use a Golden Image?<\/strong><\/p>\n<p><strong> Golden images help solve common operational challenges:<\/strong><\/p>\n<ul>\n<li>\u00a0<strong> Consistency:<\/strong> Every instance launched has the same configuration and software versions.<\/li>\n<li>\u00a0<strong> Faster provisioning<\/strong>: Reduces time spent on bootstrapping and installing dependencies.<\/li>\n<li>\u00a0 <strong>Improved security:<\/strong> Images can be patched, scanned, and hardened before use.<\/li>\n<li><strong>\u00a0 Auditability:<\/strong>Provides a clear versioned history of changes to infrastructure images.<\/li>\n<\/ul>\n<p><strong>Components of the Pipeline<\/strong><\/p>\n<p>To build an automated golden image pipeline on AWS, the following services are commonly used:<\/p>\n<p><strong>AWS CodeCommit (or GitHub\/GitLab\/Bitbucket)<\/strong><\/p>\n<p>Stores your Packer templates and configuration files.<\/p>\n<p><strong>AWS CodePipeline<\/strong><\/p>\n<p>Orchestrates the overall workflow\u2014triggers the build when changes are committed.<\/p>\n<p><strong>AWS CodeBuild<\/strong><\/p>\n<p>Executes the Packer build commands and provisions the AMI.<\/p>\n<p><strong>HashiCorp Packer<\/strong><\/p>\n<p>Creates the Amazon Machine Image (AMI) based on the configuration.<\/p>\n<p><strong>Amazon EC2<\/strong><\/p>\n<p>Runs the resulting AMI as a golden image for applications.<\/p>\n<p><strong>High-Level Workflow<\/strong><\/p>\n<p><strong>Commit Changes<\/strong><\/p>\n<p>Developers push changes (e.g., updated dependencies, OS patches) to the Git repository containing the Packer template (.json or HCL file).<\/p>\n<p><strong>Pipeline Trigger<\/strong><\/p>\n<p>CodePipeline detects the change and triggers a new pipeline execution.<\/p>\n<p><strong>Build Stage<\/strong><\/p>\n<p>CodeBuild runs a buildspec file that installs Packer and executes the build command.<br \/>\nPacker provisions a temporary EC2 instance, installs the application, applies configurations, and generates a new AMI.<\/p>\n<p><strong>Post-Build Actions<\/strong><\/p>\n<p>Optionally, run automated tests to validate the AMI.<br \/>\nTag the AMI with version details, date, and application name for easy tracking.<br \/>\n(Optional) Publish AMI IDs to Parameter Store or Secrets Manager for use by other services.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>\u00a0 Example: CodeBuild Buildspec<\/strong><\/p>\n<p>A typical buildspec.yml for Packer might look like this:<br \/>\nversion: 0.2<\/p>\n<p>phases:<br \/>\ninstall:<br \/>\ncommands:<br \/>\n&#8211; curl -fsSL https:\/\/apt.releases.hashicorp.com\/gpg | sudo apt-key add &#8211;<br \/>\n&#8211; sudo apt-add-repository &#8220;deb [arch=amd64] https:\/\/apt.releases.hashicorp.com $(lsb_release -cs) main&#8221;<br \/>\n&#8211; sudo apt-get update &amp;&amp; sudo apt-get install -y packer<br \/>\nbuild:<br \/>\ncommands:<br \/>\n&#8211; packer init .<br \/>\n&#8211; packer validate golden-image.pkr.hcl<br \/>\n&#8211; packer build golden-image.pkr.hcl<br \/>\nartifacts:<br \/>\nfiles:<br \/>\n&#8211; &#8216;**\/*&#8217;<br \/>\nThis script installs Packer, validates the template, and builds the golden image.<\/p>\n<p><strong>Best Practices:<\/strong><\/p>\n<ul>\n<li><strong>Version your images:<\/strong> Use semantic versioning or date-based tagging.<br \/>\n<strong>Automated testing<\/strong>: Validate that the AMI boots correctly and required services are running.<br \/>\n<strong>Security scanning:<\/strong> Integrate vulnerability scanners into the pipeline to ensure hardened images.<br \/>\n<strong>Parameterization:<\/strong> Use variables in Packer to customize builds per environment (e.g., staging, production).<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>By integrating <strong>Packer<\/strong> with an <strong>AWS build pipeline<\/strong>, teams can automate the creation of golden images in a repeatable and secure manner. This approach reduces manual intervention, minimizes configuration drift, and provides a standardized foundation for application deployment across environments.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In modern infrastructure and application delivery workflows, golden images play an important role in ensuring consistency, security, and repeatability. A golden image is a pre-baked machine image that contains the required operating system, configurations, and application dependencies, making it easier to launch new instances with a known-good baseline. This article walks through how to [&hellip;]<\/p>\n","protected":false},"author":2182,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":94,"footnotes":""},"categories":[5877],"tags":[8159,8158,2468,8157,8156],"class_list":["post-76330","post","type-post","status-publish","format-standard","hentry","category-msp","tag-complianceaudits","tag-costallocation","tag-governance","tag-improvesvisibility","tag-lifecyclemmanagement"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Introduction In modern infrastructure and application delivery workflows, golden images play an important role in ensuring consistency, security, and repeatability. A golden image is a pre-baked machine image that contains the required operating system, configurations, and application dependencies, making it easier to launch new instances with a known-good baseline. This article walks through how to\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Mohd Sadat Qureshi\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/\" \/>\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=\"Building a Packer Golden Image Using AWS Build Pipeline | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Introduction In modern infrastructure and application delivery workflows, golden images play an important role in ensuring consistency, security, and repeatability. A golden image is a pre-baked machine image that contains the required operating system, configurations, and application dependencies, making it easier to launch new instances with a known-good baseline. This article walks through how to\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.tothenew.com\/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=\"Building a Packer Golden Image Using AWS Build Pipeline | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Introduction In modern infrastructure and application delivery workflows, golden images play an important role in ensuring consistency, security, and repeatability. A golden image is a pre-baked machine image that contains the required operating system, configurations, and application dependencies, making it easier to launch new instances with a known-good baseline. This article walks through how to\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.tothenew.com\/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\\\/building-a-packer-golden-image-using-aws-build-pipeline\\\/#article\",\"name\":\"Building a Packer Golden Image Using AWS Build Pipeline | TO THE NEW Blog\",\"headline\":\"Building a Packer Golden Image Using AWS Build Pipeline\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/sadat-qureshi\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2025-09-12T13:12:55+05:30\",\"dateModified\":\"2025-09-17T11:55:39+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-a-packer-golden-image-using-aws-build-pipeline\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-a-packer-golden-image-using-aws-build-pipeline\\\/#webpage\"},\"articleSection\":\"MSP, ComplianceAudits, CostAllocation, Governance, ImprovesVisibility, LifecycleMmanagement\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-a-packer-golden-image-using-aws-build-pipeline\\\/#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\\\/msp\\\/#listItem\",\"name\":\"MSP\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/msp\\\/#listItem\",\"position\":2,\"name\":\"MSP\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/msp\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-a-packer-golden-image-using-aws-build-pipeline\\\/#listItem\",\"name\":\"Building a Packer Golden Image Using AWS Build Pipeline\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-a-packer-golden-image-using-aws-build-pipeline\\\/#listItem\",\"position\":3,\"name\":\"Building a Packer Golden Image Using AWS Build Pipeline\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/msp\\\/#listItem\",\"name\":\"MSP\"}}]},{\"@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\\\/sadat-qureshi\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/sadat-qureshi\\\/\",\"name\":\"Mohd Sadat Qureshi\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-a-packer-golden-image-using-aws-build-pipeline\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/aa8c95cf-20ae-43bf-9010-5ab39cf1dd60_3566-Mohd-Qureshi-PROFILEPICTURE.jpeg\",\"width\":96,\"height\":96,\"caption\":\"Mohd Sadat Qureshi\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-a-packer-golden-image-using-aws-build-pipeline\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-a-packer-golden-image-using-aws-build-pipeline\\\/\",\"name\":\"Building a Packer Golden Image Using AWS Build Pipeline | TO THE NEW Blog\",\"description\":\"Introduction In modern infrastructure and application delivery workflows, golden images play an important role in ensuring consistency, security, and repeatability. A golden image is a pre-baked machine image that contains the required operating system, configurations, and application dependencies, making it easier to launch new instances with a known-good baseline. This article walks through how to\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-a-packer-golden-image-using-aws-build-pipeline\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/sadat-qureshi\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/sadat-qureshi\\\/#author\"},\"datePublished\":\"2025-09-12T13:12:55+05:30\",\"dateModified\":\"2025-09-17T11:55:39+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":"Building a Packer Golden Image Using AWS Build Pipeline | TO THE NEW Blog","description":"Introduction In modern infrastructure and application delivery workflows, golden images play an important role in ensuring consistency, security, and repeatability. A golden image is a pre-baked machine image that contains the required operating system, configurations, and application dependencies, making it easier to launch new instances with a known-good baseline. This article walks through how to","canonical_url":"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/#article","name":"Building a Packer Golden Image Using AWS Build Pipeline | TO THE NEW Blog","headline":"Building a Packer Golden Image Using AWS Build Pipeline","author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/sadat-qureshi\/#author"},"publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"},"datePublished":"2025-09-12T13:12:55+05:30","dateModified":"2025-09-17T11:55:39+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/#webpage"},"isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/#webpage"},"articleSection":"MSP, ComplianceAudits, CostAllocation, Governance, ImprovesVisibility, LifecycleMmanagement"},{"@type":"BreadcrumbList","@id":"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/#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\/msp\/#listItem","name":"MSP"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/msp\/#listItem","position":2,"name":"MSP","item":"https:\/\/www.tothenew.com\/blog\/category\/msp\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/#listItem","name":"Building a Packer Golden Image Using AWS Build Pipeline"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/#listItem","position":3,"name":"Building a Packer Golden Image Using AWS Build Pipeline","previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/msp\/#listItem","name":"MSP"}}]},{"@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\/sadat-qureshi\/#author","url":"https:\/\/www.tothenew.com\/blog\/author\/sadat-qureshi\/","name":"Mohd Sadat Qureshi","image":{"@type":"ImageObject","@id":"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/aa8c95cf-20ae-43bf-9010-5ab39cf1dd60_3566-Mohd-Qureshi-PROFILEPICTURE.jpeg","width":96,"height":96,"caption":"Mohd Sadat Qureshi"}},{"@type":"WebPage","@id":"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/#webpage","url":"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/","name":"Building a Packer Golden Image Using AWS Build Pipeline | TO THE NEW Blog","description":"Introduction In modern infrastructure and application delivery workflows, golden images play an important role in ensuring consistency, security, and repeatability. A golden image is a pre-baked machine image that contains the required operating system, configurations, and application dependencies, making it easier to launch new instances with a known-good baseline. This article walks through how to","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/#breadcrumblist"},"author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/sadat-qureshi\/#author"},"creator":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/sadat-qureshi\/#author"},"datePublished":"2025-09-12T13:12:55+05:30","dateModified":"2025-09-17T11:55:39+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"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Building a Packer Golden Image Using AWS Build Pipeline | TO THE NEW Blog","og:description":"Introduction In modern infrastructure and application delivery workflows, golden images play an important role in ensuring consistency, security, and repeatability. A golden image is a pre-baked machine image that contains the required operating system, configurations, and application dependencies, making it easier to launch new instances with a known-good baseline. This article walks through how to","og:url":"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/","og:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Building a Packer Golden Image Using AWS Build Pipeline | TO THE NEW Blog","twitter:description":"Introduction In modern infrastructure and application delivery workflows, golden images play an important role in ensuring consistency, security, and repeatability. A golden image is a pre-baked machine image that contains the required operating system, configurations, and application dependencies, making it easier to launch new instances with a known-good baseline. This article walks through how to","twitter:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"76330","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","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":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","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":"default","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":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"limit_modified_date":false,"created":"2025-09-11 07:34:51","updated":"2025-09-17 06:25:39","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:\/\/www.tothenew.com\/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:\/\/www.tothenew.com\/blog\/category\/msp\/\" title=\"MSP\">MSP<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tBuilding a Packer Golden Image Using AWS Build Pipeline\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.tothenew.com\/blog"},{"label":"MSP","link":"https:\/\/www.tothenew.com\/blog\/category\/msp\/"},{"label":"Building a Packer Golden Image Using AWS Build Pipeline","link":"https:\/\/www.tothenew.com\/blog\/building-a-packer-golden-image-using-aws-build-pipeline\/"}],"_links":{"self":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/76330","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/users\/2182"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/comments?post=76330"}],"version-history":[{"count":4,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/76330\/revisions"}],"predecessor-version":[{"id":76339,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/76330\/revisions\/76339"}],"wp:attachment":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/media?parent=76330"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/categories?post=76330"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/tags?post=76330"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}