From 5a618230822f28f2df5f5de59a56bb2c9b6951b5 Mon Sep 17 00:00:00 2001 From: Pero P Date: Fri, 15 Jan 2021 01:58:59 -0800 Subject: [PATCH] Fix broken links to all Amazon builders (#10487) --- website/content/docs/builders/amazon/index.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/website/content/docs/builders/amazon/index.mdx b/website/content/docs/builders/amazon/index.mdx index 39f8d1966..3039471be 100644 --- a/website/content/docs/builders/amazon/index.mdx +++ b/website/content/docs/builders/amazon/index.mdx @@ -12,29 +12,29 @@ Packer is able to create Amazon AMIs. To achieve this, Packer comes with multiple builders depending on the strategy you want to use to build the AMI. Packer supports the following builders at the moment: -- [amazon-ebs](/docs/builders/amazon-ebs) - Create EBS-backed AMIs by +- [amazon-ebs](/docs/builders/amazon/ebs) - Create EBS-backed AMIs by launching a source AMI and re-packaging it into a new AMI after provisioning. If in doubt, use this builder, which is the easiest to get started with. -- [amazon-instance](/docs/builders/amazon-instance) - Create +- [amazon-instance](/docs/builders/amazon/instance) - Create instance-store AMIs by launching and provisioning a source instance, then rebundling it and uploading it to S3. -- [amazon-chroot](/docs/builders/amazon-chroot) - Create EBS-backed AMIs +- [amazon-chroot](/docs/builders/amazon/chroot) - Create EBS-backed AMIs from an existing EC2 instance by mounting the root device and using a [Chroot](https://en.wikipedia.org/wiki/Chroot) environment to provision that device. This is an **advanced builder and should not be used by newcomers**. However, it is also the fastest way to build an EBS-backed AMI since no new EC2 instance needs to be launched. -- [amazon-ebssurrogate](/docs/builders/amazon-ebssurrogate) - Create EBS +- [amazon-ebssurrogate](/docs/builders/amazon/ebssurrogate) - Create EBS -backed AMIs from scratch. Works similarly to the `chroot` builder but does not require running in AWS. This is an **advanced builder and should not be used by newcomers**. -> **Don't know which builder to use?** If in doubt, use the [amazon-ebs -builder](/docs/builders/amazon-ebs). It is much easier to use and Amazon +builder](/docs/builders/amazon/ebs). It is much easier to use and Amazon generally recommends EBS-backed images nowadays. # Amazon EBS Volume Builder @@ -42,7 +42,7 @@ generally recommends EBS-backed images nowadays. Packer is able to create Amazon EBS Volumes which are preinitialized with a filesystem and data. -- [amazon-ebsvolume](/docs/builders/amazon-ebsvolume) - Create EBS +- [amazon-ebsvolume](/docs/builders/amazon/ebsvolume) - Create EBS volumes by launching a source AMI with block devices mapped. Provision the instance, then destroy it, retaining the EBS volumes.