Update doc to use valid AMI and t2.micro instance types

This commit is contained in:
clint shryock 2015-12-15 15:58:28 -06:00
parent 64bded6269
commit 6236e8d720
3 changed files with 6 additions and 6 deletions

View File

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

View File

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

View File

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