{"id":16781423,"url":"https://github.com/arm4b/packer-post-processor-vagrant-cloud-standalone","last_synced_at":"2026-05-19T00:36:26.817Z","repository":{"id":57579035,"uuid":"132895413","full_name":"arm4b/packer-post-processor-vagrant-cloud-standalone","owner":"arm4b","description":"Packer post-processor plugin to upload artifacts to Vagrant Cloud from the input filepath (without a requirement of using 'vagrant' post-processor). Useful to split Packer build/deploy stage.","archived":false,"fork":false,"pushed_at":"2018-05-15T13:45:37.000Z","size":44,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-26T18:48:39.811Z","etag":null,"topics":["cd","continuous-delivery","golang","packer","packer-plugin","packer-post-processor","post-processor","vagrant","vagrant-cloud"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arm4b.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-05-10T12:11:27.000Z","updated_at":"2024-07-22T15:36:05.000Z","dependencies_parsed_at":"2022-09-26T19:11:55.014Z","dependency_job_id":null,"html_url":"https://github.com/arm4b/packer-post-processor-vagrant-cloud-standalone","commit_stats":null,"previous_names":["arm4b/packer-post-processor-vagrant-cloud-standalone","armab/packer-post-processor-vagrant-cloud-standalone"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/arm4b/packer-post-processor-vagrant-cloud-standalone","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arm4b%2Fpacker-post-processor-vagrant-cloud-standalone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arm4b%2Fpacker-post-processor-vagrant-cloud-standalone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arm4b%2Fpacker-post-processor-vagrant-cloud-standalone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arm4b%2Fpacker-post-processor-vagrant-cloud-standalone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arm4b","download_url":"https://codeload.github.com/arm4b/packer-post-processor-vagrant-cloud-standalone/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arm4b%2Fpacker-post-processor-vagrant-cloud-standalone/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32254696,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T04:23:17.126Z","status":"ssl_error","status_checked_at":"2026-04-25T04:21:53.360Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cd","continuous-delivery","golang","packer","packer-plugin","packer-post-processor","post-processor","vagrant","vagrant-cloud"],"created_at":"2024-10-13T07:43:01.687Z","updated_at":"2026-04-25T07:33:37.876Z","avatar_url":"https://github.com/arm4b.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vagrant-cloud-standalone\n[![Build Status](https://travis-ci.org/armab/packer-post-processor-vagrant-cloud-standalone.svg?branch=master)](https://travis-ci.org/armab/packer-post-processor-vagrant-cloud-standalone)\n[![GitHub release](https://img.shields.io/github/release/armab/packer-post-processor-vagrant-cloud-standalone.svg)](https://github.com/armab/packer-post-processor-vagrant-cloud-standalone/releases/latest)\n[![License](https://img.shields.io/github/license/armab/packer-post-processor-vagrant-cloud-standalone.svg?style=flat)](LICENSE)\n\n[Packer](https://www.packer.io/) post-processor plugin for uploading artifacts to [Vagrant Cloud](https://vagrantcloud.com/) from the input filepath.\n\n## Description\nThis post-processor is a fork of core Packer's [vagrant-cloud](https://www.packer.io/docs/post-processors/vagrant-cloud.html)\nplugin ([source code](https://github.com/hashicorp/packer/tree/master/post-processor/vagrant-cloud)).\n\nWhile original `vagrant-cloud` plugin requires artifact produced from the previous `vagrant` post-processor\ninvolving entire build stage, forked version `vagrant-cloud-standalone` just uploads artifact to\nVagrant Cloud directly by input filepath, hence standalone.\n\nIt can be useful to split Packer build/deploy stage if you prefer to divide CI/CD or when artifact\nwas already produced before.\n\n## Installation\nPacker supports pluggable mechanism. Please read the following documentation to understand how to install this plugin:\n\nhttps://www.packer.io/docs/extend/plugins.html\n\nYou can download binary built for your architecture from [Github Releases](https://github.com/armab/packer-post-processor-vagrant-cloud-standalone/releases).\n\n## Usage\nHere is a simple example of `vagrant_deploy.json`:\n\n```json\n{\n  \"variables\": {\n    \"description\": \"Packer template for deploying a .box artifact to Vagrant CLoud\",\n    \"cloud_token\": \"{{ env `VAGRANT_CLOUD_TOKEN` }}\"\n  },\n  \"builders\": [\n    {\n      \"type\": \"file\",\n      \"content\": \"Do nothing, Packer just requires at least one builder to be present\",\n      \"target\": \"/dev/null\"\n    }\n  ],\n  \"post-processors\": [\n    {\n      \"type\": \"vagrant-cloud-standalone\",\n      \"access_token\": \"{{user `cloud_token`}}\",\n      \"box_tag\": \"ubuntu/xenial64\",\n      \"provider\": \"virtualbox\",\n      \"version\": \"20180130.0.0\",\n      \"artifact\": \"builds/ubuntu-xenial_v20180130.0.0.box\"\n    }\n  ]\n}\n```\n\nIt will verify the box, create new Version, Provider, Upload the provided .box and then Release new version in Vagrant Cloud.\n\n### Configuration\nConfiguration is the same as original Packer's [vagrant-cloud](https://www.packer.io/docs/post-processors/vagrant-cloud.html).\n\nA few settings were added to allow uploading .box artifact from the local file path:\n- `provider` (string)\n  - Box type, Vagrant provider like `virtualbox`, `vmware`, `hyperv` etc.\n- `artifact` (string)\n  - Path to artifact file `.box`. to deploy.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farm4b%2Fpacker-post-processor-vagrant-cloud-standalone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farm4b%2Fpacker-post-processor-vagrant-cloud-standalone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farm4b%2Fpacker-post-processor-vagrant-cloud-standalone/lists"}