Merge pull request #4642 from hashicorp/pr-4626

Changes AMI to be non-hvm, matching the one used in earlier pages
This commit is contained in:
Clint 2016-01-13 15:48:00 -06:00
commit 6b2fba67bb
3 changed files with 6 additions and 6 deletions

View File

@ -67,7 +67,7 @@ $ terraform plan
public_ip: "" => "<computed>"
+ aws_instance.example
ami: "" => "ami-8eb061e6"
ami: "" => "ami-b8b061d0"
availability_zone: "" => "<computed>"
instance_type: "" => "t1.micro"
key_name: "" => "<computed>"
@ -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"
}
```

View File

@ -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"

View File

@ -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"
}
}