Merge pull request #2879 from clstokes/artifact-amazon-image

Change amazon.ami to amazon.image as atlas artifact type
This commit is contained in:
Mark Peek 2015-10-28 08:34:54 -07:00
commit df8f88b3d1
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ you can also use `token` configuration option.
"type": "atlas", "type": "atlas",
"token": "{{user `atlas_token`}}", "token": "{{user `atlas_token`}}",
"artifact": "hashicorp/foobar", "artifact": "hashicorp/foobar",
"artifact_type": "amazon.ami", "artifact_type": "amazon.image",
"metadata": { "metadata": {
"created_at": "{{timestamp}}" "created_at": "{{timestamp}}"
} }

View File

@ -99,7 +99,7 @@ deployed by a tool like [Terraform](https://terraform.io). The `atlas`
"post-processors": [{ "post-processors": [{
"type": "atlas", "type": "atlas",
"artifact": "ATLAS_USERNAME/packer-tutorial", "artifact": "ATLAS_USERNAME/packer-tutorial",
"artifact_type": "amazon.ami" "artifact_type": "amazon.image"
}] }]
} }
``` ```