Clarify that you get the AMI id from metadata

This commit is contained in:
Kevin Fishner 2015-08-18 12:48:01 -07:00
parent 21d18ae2c9
commit 76bbd3b457
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ resource "atlas_artifact" "web" {
# Start our instance with the dynamic ami value
resource "aws_instance" "app" {
ami = "${atlas_artifact.web.id}"
ami = "${atlas_artifact.web.metadata_full.region-us-east-1}"
...
}
```