From affbe9bffa95a8b8e3c68eab27349d7cd1f68620 Mon Sep 17 00:00:00 2001 From: timmy_tofu Date: Sun, 10 Jan 2016 15:27:32 -0500 Subject: [PATCH] Changes AMI to be non-hvm, matching the one used in earlier pages --- website/source/intro/getting-started/dependencies.html.md | 6 +++--- website/source/intro/getting-started/provision.html.md | 4 ++-- website/source/intro/getting-started/variables.html.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/website/source/intro/getting-started/dependencies.html.md b/website/source/intro/getting-started/dependencies.html.md index 63cd26d82..42d5392a8 100644 --- a/website/source/intro/getting-started/dependencies.html.md +++ b/website/source/intro/getting-started/dependencies.html.md @@ -67,7 +67,7 @@ $ terraform plan public_ip: "" => "" + aws_instance.example - ami: "" => "ami-8eb061e6" + ami: "" => "ami-b8b061d0" availability_zone: "" => "" instance_type: "" => "t1.micro" key_name: "" => "" @@ -90,7 +90,7 @@ following: ``` aws_instance.example: Creating... - ami: "" => "ami-8eb061e6" + ami: "" => "ami-b8b061d0" instance_type: "" => "t1.micro" aws_eip.ip: Creating... instance: "" => "i-0e737b25" @@ -144,7 +144,7 @@ created in parallel to everything else. ``` resource "aws_instance" "another" { - ami = "ami-8eb061e6" + ami = "ami-b8b061d0" instance_type = "t1.micro" } ``` diff --git a/website/source/intro/getting-started/provision.html.md b/website/source/intro/getting-started/provision.html.md index c64598708..38153029c 100644 --- a/website/source/intro/getting-started/provision.html.md +++ b/website/source/intro/getting-started/provision.html.md @@ -25,7 +25,7 @@ To define a provisioner, modify the resource block defining the ``` resource "aws_instance" "example" { - ami = "ami-8eb061e6" + ami = "ami-b8b061d0" instance_type = "t1.micro" provisioner "local-exec" { @@ -61,7 +61,7 @@ then run `apply`: ``` $ terraform apply aws_instance.example: Creating... - ami: "" => "ami-8eb061e6" + ami: "" => "ami-b8b061d0" instance_type: "" => "t1.micro" aws_eip.ip: Creating... instance: "" => "i-213f350a" diff --git a/website/source/intro/getting-started/variables.html.md b/website/source/intro/getting-started/variables.html.md index eb3131135..2fbda60ff 100644 --- a/website/source/intro/getting-started/variables.html.md +++ b/website/source/intro/getting-started/variables.html.md @@ -123,7 +123,7 @@ support for the "us-west-2" region as well: ``` variable "amis" { default = { - us-east-1 = "ami-8eb061e6" + us-east-1 = "ami-b8b061d0" us-west-2 = "ami-ef5e24df" } }