Merge pull request #4975 from hashicorp/vagrantclouddoc

docs: more user friendly vagrant cloud example
This commit is contained in:
Matthew Hooker 2017-06-07 10:13:05 -07:00 committed by GitHub
commit 599dff36ca
1 changed files with 2 additions and 3 deletions

View File

@ -91,8 +91,7 @@ post-processor.
```json ```json
{ {
"variables": { "variables": {
"version": "", "cloud_token": "{{ env `ATLAS_TOKEN` }}"
"cloud_token": ""
}, },
"post-processors": [ "post-processors": [
[ [
@ -106,7 +105,7 @@ post-processor.
"type": "vagrant-cloud", "type": "vagrant-cloud",
"box_tag": "hashicorp/precise64", "box_tag": "hashicorp/precise64",
"access_token": "{{user `cloud_token`}}", "access_token": "{{user `cloud_token`}}",
"version": "{{user `version`}}" "version": "1.0.{{timestamp}}"
} }
] ]
] ]