From 76bbd3b457a9e5e002246fcbdc89be83c188a09b Mon Sep 17 00:00:00 2001 From: Kevin Fishner Date: Tue, 18 Aug 2015 12:48:01 -0700 Subject: [PATCH] Clarify that you get the AMI id from metadata --- website/source/docs/providers/atlas/r/artifact.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/providers/atlas/r/artifact.html.markdown b/website/source/docs/providers/atlas/r/artifact.html.markdown index 3dee419f7..7c8be2985 100644 --- a/website/source/docs/providers/atlas/r/artifact.html.markdown +++ b/website/source/docs/providers/atlas/r/artifact.html.markdown @@ -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}" ... } ```