diff --git a/website/source/docs/configuration/override.html.md b/website/source/docs/configuration/override.html.md index a667adcd58..1f841af08a 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-1234567" + ami = "ami-d05e75b8" } ``` diff --git a/website/source/docs/configuration/resources.html.md b/website/source/docs/configuration/resources.html.md index d5e087fec4..3bf2031ac2 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-123456" - instance_type = "m1.small" + ami = "ami-d05e75b8" + instance_type = "t2.micro" } ``` diff --git a/website/source/docs/modules/usage.html.markdown b/website/source/docs/modules/usage.html.markdown index 8f98a9d6b3..65ce75cf33 100644 --- a/website/source/docs/modules/usage.html.markdown +++ b/website/source/docs/modules/usage.html.markdown @@ -87,9 +87,9 @@ For example: ``` resource "aws_instance" "client" { - ami = "ami-123456" - instance_type = "m1.small" - availability_zone = "${module.consul.server_availability_zone}" + ami = "ami-d05e75b8" + instance_type = "t2.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 e9e8356454..79e4d22070 100644 --- a/website/source/docs/providers/aws/r/instance.html.markdown +++ b/website/source/docs/providers/aws/r/instance.html.markdown @@ -14,11 +14,11 @@ and deleted. Instances also support [provisioning](/docs/provisioners/index.html ## Example Usage ``` -# Create a new instance of the ami-1234 on an m1.small node -# with an AWS Tag naming it "HelloWorld" +# Create a new instance of the `ami-d05e75b8` (Ubuntu 14.04) on an +# t2.micro node with an AWS Tag naming it "HelloWorld" resource "aws_instance" "web" { - ami = "ami-1234" - instance_type = "m1.small" + ami = "ami-d05e75b8" + instance_type = "t2.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 413f1b4a1e..4f820b7f67 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" - image_id = "ami-1234" - instance_type = "m1.small" + ami = "ami-d05e75b8" + instance_type = "t2.micro" } ``` @@ -33,8 +33,8 @@ with `name_prefix`. Example: ``` resource "aws_launch_configuration" "as_conf" { name_prefix = "terraform-lc-example-" - image_id = "ami-1234" - instance_type = "m1.small" + ami = "ami-d05e75b8" + instance_type = "t2.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" { - image_id = "ami-1234" - instance_type = "m1.small" + ami = "ami-d05e75b8" + instance_type = "t2.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 92a6c3f17b..52c8b747bf 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-043a5034"
-instance_type = "m1.small"
+ami = "ami-d05e75b8"
+instance_type = "t2.micro"
}