From 9f624a4557b9f70d0714f919e00e60be80743729 Mon Sep 17 00:00:00 2001 From: Philip Cristiano Date: Fri, 5 Jul 2013 08:42:22 -0400 Subject: [PATCH] docs: Fix invalid example --- website/source/docs/templates/introduction.html.markdown | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/source/docs/templates/introduction.html.markdown b/website/source/docs/templates/introduction.html.markdown index 21180f0f7..799fd9e20 100644 --- a/website/source/docs/templates/introduction.html.markdown +++ b/website/source/docs/templates/introduction.html.markdown @@ -54,6 +54,7 @@ missing valid AWS access keys. Otherwise, it would work properly with "secret_key": "...", "region": "us-east-1", "source_ami": "ami-de0d9eb7", + "instance_type": "m1.small", "ssh_username": "ubuntu", "ami_name": "packer {{.CreateTime}}" } @@ -62,7 +63,7 @@ missing valid AWS access keys. Otherwise, it would work properly with "provisioners": [ { "type": "shell", - "path": "setup_things.sh" + "script": "setup_things.sh" } ] }