From c5950225d5d3b54e83cb1fe1740ba2a50b22a659 Mon Sep 17 00:00:00 2001 From: timmy_tofu Date: Mon, 11 Jan 2016 00:16:46 -0500 Subject: [PATCH] Changes (inconsistently used) t2.micro back to t1.micro - t2.micro is VPC only and thus will cause problems for users with a default VPC (e.g. people who signed up for AWS a few years ago) --- website/source/intro/getting-started/build.html.md | 2 +- 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 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/website/source/intro/getting-started/build.html.md b/website/source/intro/getting-started/build.html.md index aa3c7c506..a40369fad 100644 --- a/website/source/intro/getting-started/build.html.md +++ b/website/source/intro/getting-started/build.html.md @@ -95,7 +95,7 @@ Within the resource block itself is configuration for that resource. This is dependent on each resource provider and is fully documented within our [providers reference](/docs/providers/index.html). For our EC2 instance, we specify -an AMI for Ubuntu, and request a "t2.micro" instance so we +an AMI for Ubuntu, and request a "t1.micro" instance so we qualify under the free tier. ## Execution Plan diff --git a/website/source/intro/getting-started/dependencies.html.md b/website/source/intro/getting-started/dependencies.html.md index 75cc9e4eb..63cd26d82 100644 --- a/website/source/intro/getting-started/dependencies.html.md +++ b/website/source/intro/getting-started/dependencies.html.md @@ -69,7 +69,7 @@ $ terraform plan + aws_instance.example ami: "" => "ami-8eb061e6" availability_zone: "" => "" - instance_type: "" => "t2.micro" + instance_type: "" => "t1.micro" key_name: "" => "" private_dns: "" => "" private_ip: "" => "" @@ -91,7 +91,7 @@ following: ``` aws_instance.example: Creating... ami: "" => "ami-8eb061e6" - instance_type: "" => "t2.micro" + instance_type: "" => "t1.micro" aws_eip.ip: Creating... instance: "" => "i-0e737b25" @@ -145,7 +145,7 @@ created in parallel to everything else. ``` resource "aws_instance" "another" { ami = "ami-8eb061e6" - instance_type = "t2.micro" + 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 24684ef78..c64598708 100644 --- a/website/source/intro/getting-started/provision.html.md +++ b/website/source/intro/getting-started/provision.html.md @@ -26,7 +26,7 @@ To define a provisioner, modify the resource block defining the ``` resource "aws_instance" "example" { ami = "ami-8eb061e6" - instance_type = "t2.micro" + instance_type = "t1.micro" provisioner "local-exec" { command = "echo ${aws_instance.example.public_ip} > file.txt" @@ -62,7 +62,7 @@ then run `apply`: $ terraform apply aws_instance.example: Creating... ami: "" => "ami-8eb061e6" - instance_type: "" => "t2.micro" + 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 9062a08cf..eb3131135 100644 --- a/website/source/intro/getting-started/variables.html.md +++ b/website/source/intro/getting-started/variables.html.md @@ -137,7 +137,7 @@ Then, replace the "aws\_instance" with the following: ``` resource "aws_instance" "example" { ami = "${lookup(var.amis, var.region)}" - instance_type = "t2.micro" + instance_type = "t1.micro" } ```