diff --git a/website/source/docs/configuration/override.html.md b/website/source/docs/configuration/override.html.md index 1f841af08..b3dbb1dbc 100644 --- a/website/source/docs/configuration/override.html.md +++ b/website/source/docs/configuration/override.html.md @@ -37,7 +37,7 @@ If you have a Terraform configuration `example.tf` with the contents: ``` resource "aws_instance" "web" { - ami = "ami-d05e75b8" + ami = "ami-408c7f28" } ``` diff --git a/website/source/docs/configuration/resources.html.md b/website/source/docs/configuration/resources.html.md index 3bf2031ac..11fb9a9c5 100644 --- a/website/source/docs/configuration/resources.html.md +++ b/website/source/docs/configuration/resources.html.md @@ -25,8 +25,8 @@ A resource configuration looks like the following: ``` resource "aws_instance" "web" { - ami = "ami-d05e75b8" - instance_type = "t2.micro" + ami = "ami-408c7f28" + instance_type = "t1.micro" } ``` diff --git a/website/source/docs/modules/usage.html.markdown b/website/source/docs/modules/usage.html.markdown index 65ce75cf3..31921623a 100644 --- a/website/source/docs/modules/usage.html.markdown +++ b/website/source/docs/modules/usage.html.markdown @@ -87,8 +87,8 @@ For example: ``` resource "aws_instance" "client" { - ami = "ami-d05e75b8" - instance_type = "t2.micro" + ami = "ami-408c7f28" + instance_type = "t1.micro" availability_zone = "${module.consul.server_availability_zone}" } ``` diff --git a/website/source/docs/providers/aws/r/instance.html.markdown b/website/source/docs/providers/aws/r/instance.html.markdown index 79e4d2207..5e35161e3 100644 --- a/website/source/docs/providers/aws/r/instance.html.markdown +++ b/website/source/docs/providers/aws/r/instance.html.markdown @@ -14,11 +14,15 @@ and deleted. Instances also support [provisioning](/docs/provisioners/index.html ## Example Usage ``` -# Create a new instance of the `ami-d05e75b8` (Ubuntu 14.04) on an -# t2.micro node with an AWS Tag naming it "HelloWorld" +# Create a new instance of the `ami-408c7f28` (Ubuntu 14.04) on an +# t1.micro node with an AWS Tag naming it "HelloWorld" +provider "aws" { + region = "us-east-1" +} + resource "aws_instance" "web" { - ami = "ami-d05e75b8" - instance_type = "t2.micro" + ami = "ami-408c7f28" + instance_type = "t1.micro" tags { Name = "HelloWorld" } diff --git a/website/source/docs/providers/aws/r/launch_configuration.html.markdown b/website/source/docs/providers/aws/r/launch_configuration.html.markdown index 4f820b7f6..dd7dd84fc 100644 --- a/website/source/docs/providers/aws/r/launch_configuration.html.markdown +++ b/website/source/docs/providers/aws/r/launch_configuration.html.markdown @@ -15,8 +15,8 @@ Provides a resource to create a new launch configuration, used for autoscaling g ``` resource "aws_launch_configuration" "as_conf" { name = "web_config" - ami = "ami-d05e75b8" - instance_type = "t2.micro" + ami = "ami-408c7f28" + instance_type = "t1.micro" } ``` @@ -33,8 +33,8 @@ with `name_prefix`. Example: ``` resource "aws_launch_configuration" "as_conf" { name_prefix = "terraform-lc-example-" - ami = "ami-d05e75b8" - instance_type = "t2.micro" + ami = "ami-408c7f28" + instance_type = "t1.micro" lifecycle { create_before_destroy = true @@ -66,8 +66,8 @@ for more information or how to launch [Spot Instances][3] with Terraform. ``` resource "aws_launch_configuration" "as_conf" { - ami = "ami-d05e75b8" - instance_type = "t2.micro" + ami = "ami-408c7f28" + instance_type = "t1.micro" spot_price = "0.001" lifecycle { create_before_destroy = true diff --git a/website/source/index.html.erb b/website/source/index.html.erb index 52c8b747b..c2bf8467b 100644 --- a/website/source/index.html.erb +++ b/website/source/index.html.erb @@ -196,8 +196,8 @@
resource "aws_instance" "app" {
count = 5
-
ami = "ami-d05e75b8"
-instance_type = "t2.micro"
+ami = "ami-408c7f28"
+instance_type = "t1.micro"
}
diff --git a/website/source/intro/getting-started/build.html.md b/website/source/intro/getting-started/build.html.md index 633db888b..aa3c7c506 100644 --- a/website/source/intro/getting-started/build.html.md +++ b/website/source/intro/getting-started/build.html.md @@ -59,8 +59,8 @@ provider "aws" { } resource "aws_instance" "example" { - ami = "ami-d05e75b8" - instance_type = "t2.micro" + ami = "ami-408c7f28" + instance_type = "t1.micro" } ``` @@ -111,9 +111,9 @@ $ terraform plan ... + aws_instance.example - ami: "" => "ami-d05e75b8" + ami: "" => "ami-408c7f28" availability_zone: "" => "