github.com/schwarzm/garden-linux@v0.0.0-20150507151835-33bca2147c47/packer/garden-ci/release_vagrant.json (about)

     1  {
     2    "variables": {
     3      "vm_name": "garden-ci.ubuntu.virtualbox",
     4      "box_tag": "",
     5      "box_version": "",
     6      "access_token": "{{env `GARDEN_PACKER_ATLAS_TOKEN`}}"
     7    },
     8    "builders": [
     9      {
    10        "name": "{{user `vm_name`}}",
    11        "type": "virtualbox-ovf",
    12        "headless": true,
    13        "source_path": "garden-ci/output/{{user `vm_name`}}.ovf",
    14        "output_directory": "garden-ci/release_output",
    15        "ssh_username": "vagrant",
    16        "ssh_password": "vagrant"
    17      }
    18    ],
    19    "post-processors": [
    20      [
    21        {
    22          "type": "vagrant",
    23          "vagrantfile_template": "garden-ci/Vagrantfile.template",
    24          "output": "garden-ci/output/{{.BuildName}}.box"
    25        },
    26        {
    27          "type": "vagrant-cloud",
    28          "box_tag": "{{user `box_tag`}}",
    29          "version": "{{user `box_version`}}",
    30          "access_token": "{{user `access_token`}}"
    31        }
    32      ]
    33    ]
    34  }