From 0369b8e7c08e5c2f2bf949ce010dc182a19b615b Mon Sep 17 00:00:00 2001 From: David Zanetti Date: Thu, 14 Jan 2016 10:52:17 +1300 Subject: [PATCH] Update docs to reflect current AMI IDs and instance sizes - Using Ubuntu-supported image, 14.04 LTS current, for us-east-1 - t1.micro no longer exists, t2.micro replaces it - Raised in issue #3052 --- .../source/docs/builders/amazon-ebs.html.markdown | 12 ++++++------ .../source/docs/post-processors/atlas.html.markdown | 4 ++-- .../templates/configuration-templates.html.markdown | 4 ++-- .../source/docs/templates/introduction.html.markdown | 4 ++-- .../intro/getting-started/build-image.html.markdown | 4 ++-- .../getting-started/parallel-builds.html.markdown | 4 ++-- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/website/source/docs/builders/amazon-ebs.html.markdown b/website/source/docs/builders/amazon-ebs.html.markdown index 6ee9adf88..511f4d75b 100644 --- a/website/source/docs/builders/amazon-ebs.html.markdown +++ b/website/source/docs/builders/amazon-ebs.html.markdown @@ -208,8 +208,8 @@ Here is a basic example. It is completely valid except for the access keys: "access_key": "YOUR KEY HERE", "secret_key": "YOUR SECRET KEY HERE", "region": "us-east-1", - "source_ami": "ami-de0d9eb7", - "instance_type": "t1.micro", + "source_ami": "ami-72b9e018", + "instance_type": "t2.micro", "ssh_username": "ubuntu", "ami_name": "packer-quick-start {{timestamp}}" } @@ -237,8 +237,8 @@ the /dev/sdb and /dev/sdc block device mappings to the finished AMI. "access_key": "YOUR KEY HERE", "secret_key": "YOUR SECRET KEY HERE", "region": "us-east-1", - "source_ami": "ami-de0d9eb7", - "instance_type": "t1.micro", + "source_ami": "ami-72b9e018", + "instance_type": "t2.micro", "ssh_username": "ubuntu", "ami_name": "packer-quick-start {{timestamp}}", "ami_block_device_mappings": [ @@ -265,8 +265,8 @@ Here is an example using the optional AMI tags. This will add the tags "access_key": "YOUR KEY HERE", "secret_key": "YOUR SECRET KEY HERE", "region": "us-east-1", - "source_ami": "ami-de0d9eb7", - "instance_type": "t1.micro", + "source_ami": "ami-72b9e018", + "instance_type": "t2.micro", "ssh_username": "ubuntu", "ami_name": "packer-quick-start {{timestamp}}", "tags": { diff --git a/website/source/docs/post-processors/atlas.html.markdown b/website/source/docs/post-processors/atlas.html.markdown index 7940b42bc..f02ec70fa 100644 --- a/website/source/docs/post-processors/atlas.html.markdown +++ b/website/source/docs/post-processors/atlas.html.markdown @@ -88,8 +88,8 @@ you can also use `token` configuration option. "access_key": "{{user `aws_access_key`}}", "secret_key": "{{user `aws_secret_key`}}", "region": "us-east-1", - "source_ami": "ami-de0d9eb7", - "instance_type": "t1.micro", + "source_ami": "ami-72b9e018", + "instance_type": "t2.micro", "ssh_username": "ubuntu", "ami_name": "atlas-example {{timestamp}}" }], diff --git a/website/source/docs/templates/configuration-templates.html.markdown b/website/source/docs/templates/configuration-templates.html.markdown index c78f13956..6d705ab8d 100644 --- a/website/source/docs/templates/configuration-templates.html.markdown +++ b/website/source/docs/templates/configuration-templates.html.markdown @@ -198,8 +198,8 @@ Please note that double quote characters need escaping inside of templates: "access_key": "...", "secret_key": "...", "region": "us-east-1", - "source_ami": "ami-de0d9eb7", - "instance_type": "t1.micro", + "source_ami": "ami-72b9e018", + "instance_type": "t2.micro", "ssh_username": "ubuntu", "ami_name": "packer {{isotime \"2006-01-02\"}}" } diff --git a/website/source/docs/templates/introduction.html.markdown b/website/source/docs/templates/introduction.html.markdown index c48dc6c73..140722dfb 100644 --- a/website/source/docs/templates/introduction.html.markdown +++ b/website/source/docs/templates/introduction.html.markdown @@ -93,8 +93,8 @@ just missing valid AWS access keys. Otherwise, it would work properly with "access_key": "...", "secret_key": "...", "region": "us-east-1", - "source_ami": "ami-de0d9eb7", - "instance_type": "t1.micro", + "source_ami": "ami-72b9e018", + "instance_type": "t2.micro", "ssh_username": "ubuntu", "ami_name": "packer {{timestamp}}" } diff --git a/website/source/intro/getting-started/build-image.html.markdown b/website/source/intro/getting-started/build-image.html.markdown index c66a604c7..7bb8a09cb 100644 --- a/website/source/intro/getting-started/build-image.html.markdown +++ b/website/source/intro/getting-started/build-image.html.markdown @@ -57,8 +57,8 @@ briefly. Create a file `example.json` and fill it with the following contents: "access_key": "{{user `aws_access_key`}}", "secret_key": "{{user `aws_secret_key`}}", "region": "us-east-1", - "source_ami": "ami-de0d9eb7", - "instance_type": "t1.micro", + "source_ami": "ami-72b9e018", + "instance_type": "t2.micro", "ssh_username": "ubuntu", "ami_name": "packer-example {{timestamp}}" }] diff --git a/website/source/intro/getting-started/parallel-builds.html.markdown b/website/source/intro/getting-started/parallel-builds.html.markdown index 57b689d7e..3d6cc0e4f 100644 --- a/website/source/intro/getting-started/parallel-builds.html.markdown +++ b/website/source/intro/getting-started/parallel-builds.html.markdown @@ -95,8 +95,8 @@ The entire template should now look like this: "access_key": "{{user `aws_access_key`}}", "secret_key": "{{user `aws_secret_key`}}", "region": "us-east-1", - "source_ami": "ami-de0d9eb7", - "instance_type": "t1.micro", + "source_ami": "ami-72b9e018", + "instance_type": "t2.micro", "ssh_username": "ubuntu", "ami_name": "packer-example {{timestamp}}" },{