{"id":21134077,"url":"https://github.com/horgix/packer-builder-amazon-ebs-mock","last_synced_at":"2026-04-28T09:05:47.358Z","repository":{"id":57528313,"uuid":"99445492","full_name":"Horgix/packer-builder-amazon-ebs-mock","owner":"Horgix","description":"Packer Builder - Mock of the official \"Amazon EBS\" builder","archived":false,"fork":false,"pushed_at":"2017-08-28T11:50:43.000Z","size":48,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-24T04:07:16.393Z","etag":null,"topics":["amazon","amazon-ebs","builder","ebs","mock","packer","packer-builder"],"latest_commit_sha":null,"homepage":"","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/Horgix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-08-05T20:11:12.000Z","updated_at":"2021-10-15T02:50:48.000Z","dependencies_parsed_at":"2022-08-30T11:50:34.977Z","dependency_job_id":null,"html_url":"https://github.com/Horgix/packer-builder-amazon-ebs-mock","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Horgix/packer-builder-amazon-ebs-mock","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Horgix%2Fpacker-builder-amazon-ebs-mock","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Horgix%2Fpacker-builder-amazon-ebs-mock/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Horgix%2Fpacker-builder-amazon-ebs-mock/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Horgix%2Fpacker-builder-amazon-ebs-mock/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Horgix","download_url":"https://codeload.github.com/Horgix/packer-builder-amazon-ebs-mock/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Horgix%2Fpacker-builder-amazon-ebs-mock/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32373551,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"online","status_checked_at":"2026-04-28T02:00:07.250Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["amazon","amazon-ebs","builder","ebs","mock","packer","packer-builder"],"created_at":"2024-11-20T06:22:54.669Z","updated_at":"2026-04-28T09:05:47.332Z","avatar_url":"https://github.com/Horgix.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Packer Builder - Amazon EBS Mock\n\n[![Build Status](https://travis-ci.org/Horgix/packer-builder-amazon-ebs-mock.svg?branch=master)](https://travis-ci.org/Horgix/packer-builder-amazon-ebs-mock)\n[![Coverage Status](https://coveralls.io/repos/github/Horgix/packer-builder-amazon-ebs-mock/badge.svg?branch=master)](https://coveralls.io/github/Horgix/packer-builder-amazon-ebs-mock?branch=master)\n[![Go Report Card](https://goreportcard.com/badge/github.com/horgix/packer-builder-amazon-ebs-mock)](https://goreportcard.com/report/github.com/horgix/packer-builder-amazon-ebs-mock)\n\n## What is this\n\n**This Packer plugin is a Builder that mocks the [official Amazon EBS\nbuilder](https://www.packer.io/docs/builders/amazon-ebs.html)**.\n\nWhy do you want that? Probably for testing purpose! At least this is my case,\nand it was built to help me test my [Packer post-processor that sends Slack\nnotifications](https://github.com/Horgix/packer-post-processor-slack-notifications);\nI **really** don't want to wait for a real AMI to build everytime each time I\nwant to run a test...\n\nThis will not handle the same configuration parameters than the official\nbuilder though, so you can't just change the type. Maybe this could be\nimplemented, feel free to submit a PR!\n\n## How it does it\n\nIn order to generate something realist, it will currently generate some random\nAMI names based on existing AWS regions but with `ami-12345678` as ID, just to\nmake sure you notice it fast if for whatever reason you end up thinking you're\nrunning a true build.\n\n| Option    | Default |Description |\n| :-------: | :-----: |:---------: |\n| Amount    | 1       | Define the number of AMI IDs to be returned as artifact. The IDs will be incremental numbers starting from `ami-00000001` |\n| Region    | \"\"      | Usable only when `Amount` is `1`. Specify the region to which the AMI should be associated. We cannot do that for `Amount \u003e 1` since the official builder doesn't support building multiple AMIs for the same region and we're using it internally |\n\n## How to use it\n\nBasically refer to the [Packer documentation on building\nimages](https://www.packer.io/intro/getting-started/build-image.html) about how\nto call it in your `packer.json`, since it's working as any builder. To learn\nhow to **install** this plugin, refer to the [Packer documentation on\ninstalling\nplugins](https://www.packer.io/docs/extending/plugins.html#installing-plugins)\n\n## How to build it\n\nThis project is using [glide](https://glide.sh/) for dependencies management.\n\n```shell\n# Get dependencies\nglide install\n# Build the binary\nmake\n```\n\n## Example\n\n### Most simple Packer JSON input (available in `tests/simplest_packer.json`)\n\n```json\n{\n  \"builders\": [\n    {\n      \"type\":           \"amazon-ebs-mock\"\n    }\n  ]\n}\n```\n\n### Output of such a build\n\n`packer build ./tests/simplest_packer.json`\n\n```raw\namazon-ebs-mock output will be in this color.\n\n==\u003e amazon-ebs-mock: I'm doing nothing...\n==\u003e amazon-ebs-mock: Nothing done with success!\n==\u003e amazon-ebs-mock: Generating mock Artifact...\n==\u003e amazon-ebs-mock: Generated mock Artifact with success :)\nBuild 'amazon-ebs-mock' finished.\n\n==\u003e Builds finished. The artifacts of successful builds are:\n--\u003e amazon-ebs-mock: AMIs were created:\n\nap-northeast-1: ami-12345678\nap-northeast-2: ami-12345678\nca-central-1: ami-12345678\neu-west-1: ami-12345678\neu-west-2: ami-12345678\nsa-east-1: ami-12345678\nus-west-2: ami-12345678\n```\n\n### Duration\n\nIf you time this build you'll end up with this:\n\n```raw\npacker build tests/simplest_packer.json  0.02s user 0.00s system 73% cpu 0.036 total\n```\n\nWhich is all the point of this mock :)\n\n### Want more details? Enable Packer logging!\n\nSee at the end of this README, it's huge :)\n\n## Misc informations\n\n- Since this is a small project that I'm also using as a test purpose, I went\n  with `glide` as a go dependencies manager. If you feel more comfortable with\n  `godep`, feel free to file a Pull Request replacing glide by godep and I'll\n  happily accept it :)\n- The `Makefile` currently provides 3 rules:\n    - `build` (default rule): build a binary of the plugin called\n      `packer-builder-amazon-ebs-mock`\n    - `fmt`: format this plugin code according to Go standards\n    - `test`: for now it just builds a packer.json...\n- The code is not really commented, but feel free to open a issue or [contact\n  me](TODO LINK) by any mean if you have some questions or want explanations\n  about it\n\n### Samples of `manifest.json`\n\nProduced by the `manifest` post-processor with this builder\n\n```json\n{\n  \"builds\": [\n    {\n      \"name\": \"amazon-ebs-mock\",\n      \"builder_type\": \"amazon-ebs-mock\",\n      \"build_time\": 1501605111,\n      \"files\": null,\n      \"artifact_id\": \"ap-northeast-1:ami-12345678,ap-south-1:ami-12345678,ap-southeast-2:ami-12345678,eu-central-1:ami-12345678,sa-east-1:ami-12345678,us-east-1:ami-12345678,us-west-1:ami-12345678\",\n      \"packer_run_uuid\": \"0c426d21-4e6a-6f56-e9aa-c98d2d325c65\"\n    },\n    {\n      \"name\": \"amazon-ebs-mock\",\n      \"builder_type\": \"amazon-ebs-mock\",\n      \"build_time\": 1501679363,\n      \"files\": null,\n      \"artifact_id\": \"ap-northeast-1:ami-12345678,ap-northeast-2:ami-12345678,ap-southeast-1:ami-12345678,ca-central-1:ami-12345678,eu-west-2:ami-12345678,us-east-2:ami-12345678,us-west-1:ami-12345678,us-west-2:ami-12345678\",\n      \"packer_run_uuid\": \"a6aeefb5-2083-3721-8b0c-b9a1c51608a7\"\n    }\n  ],\n  \"last_run_uuid\": \"a6aeefb5-2083-3721-8b0c-b9a1c51608a7\"\n}\n```\n\n## CI / Tests\n\n- \u003chttps://github.com/mattn/goveralls\u003e\n- \u003chttps://coveralls.zendesk.com/hc/en-us/articles/201342809-Go\u003e\n- \u003chttps://docs.travis-ci.com/user/coveralls/\u003e\n- \u003chttps://docs.travis-ci.com/user/languages/go/\u003e\n- \u003chttps://blog.golang.org/cover\u003e\n\n## Details of a basic build\n\n`PACKER_LOG=true packer build -color=false ./tests/simplest_packer.json`\n\n```raw\n[INFO] Packer version: 0.12.3\nPacker Target OS/Arch: linux amd64\nBuilt with Go Version: go1.8\nDetected home directory from env var: /home/horgix\n[DEBUG] Discovered plugin: amazon-ebs-mock = MY_GOPATH/src/github.com/horgix/packer-builder-amazon-ebs-mock/packer-builder-amazon-ebs-mock\nUsing internal plugin for vmware-vmx\nUsing internal plugin for amazon-instance\nUsing internal plugin for azure-arm\nUsing internal plugin for digitalocean\nUsing internal plugin for openstack\nUsing internal plugin for parallels-iso\nUsing internal plugin for virtualbox-iso\nUsing internal plugin for virtualbox-ovf\nUsing internal plugin for amazon-chroot\nUsing internal plugin for amazon-ebsvolume\nUsing internal plugin for googlecompute\nUsing internal plugin for oneandone\nUsing internal plugin for parallels-pvm\nUsing internal plugin for profitbricks\nUsing internal plugin for vmware-iso\nUsing internal plugin for amazon-ebs\nUsing internal plugin for docker\nUsing internal plugin for null\nUsing internal plugin for triton\nUsing internal plugin for amazon-ebssurrogate\nUsing internal plugin for cloudstack\nUsing internal plugin for file\nUsing internal plugin for hyperv-iso\nUsing internal plugin for qemu\nUsing internal plugin for ansible\nUsing internal plugin for ansible-local\nUsing internal plugin for windows-restart\nUsing internal plugin for windows-shell\nUsing internal plugin for converge\nUsing internal plugin for file\nUsing internal plugin for powershell\nUsing internal plugin for puppet-masterless\nUsing internal plugin for puppet-server\nUsing internal plugin for shell-local\nUsing internal plugin for chef-client\nUsing internal plugin for chef-solo\nUsing internal plugin for salt-masterless\nUsing internal plugin for shell\nUsing internal plugin for artifice\nUsing internal plugin for atlas\nUsing internal plugin for amazon-import\nUsing internal plugin for checksum\nUsing internal plugin for compress\nUsing internal plugin for googlecompute-export\nUsing internal plugin for docker-tag\nUsing internal plugin for manifest\nUsing internal plugin for shell-local\nUsing internal plugin for docker-import\nUsing internal plugin for docker-push\nUsing internal plugin for docker-save\nUsing internal plugin for vagrant\nUsing internal plugin for vagrant-cloud\nUsing internal plugin for vsphere\nDetected home directory from env var: /home/horgix\nAttempting to open config file: /home/horgix/.packerconfig\n[WARN] Config file doesn't exist: /home/horgix/.packerconfig\nPacker config: \u0026{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[amazon-ebs:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebs qemu:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-qemu azure-arm:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-azure-arm openstack:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-openstack amazon-ebsvolume:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebsvolume parallels-pvm:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-pvm docker:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-docker file:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-file vmware-vmx:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-vmx digitalocean:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-digitalocean profitbricks:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-profitbricks vmware-iso:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-iso amazon-ebssurrogate:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebssurrogate virtualbox-ovf:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-ovf amazon-chroot:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-chroot oneandone:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-oneandone null:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-null googlecompute:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-googlecompute triton:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-triton cloudstack:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-cloudstack hyperv-iso:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hyperv-iso amazon-ebs-mock:MY_GOPATH/src/github.com/horgix/packer-builder-amazon-ebs-mock/packer-builder-amazon-ebs-mock amazon-instance:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-instance parallels-iso:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-iso virtualbox-iso:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-iso] PostProcessors:map[artifice:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-artifice atlas:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-atlas checksum:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-checksum googlecompute-export:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-googlecompute-export docker-tag:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-tag vsphere:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere vagrant-cloud:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant-cloud amazon-import:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-amazon-import shell-local:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-shell-local docker-import:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-import compress:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-compress manifest:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-manifest docker-push:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-push docker-save:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-save vagrant:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant] Provisioners:map[powershell:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-powershell puppet-server:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-server salt-masterless:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-salt-masterless windows-shell:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-shell file:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-file shell-local:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell-local chef-client:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-client chef-solo:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-solo converge:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-converge windows-restart:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-restart puppet-masterless:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-masterless shell:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell ansible:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible ansible-local:/usr/bin/packer-io-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible-local]}\nSetting cache directory: MY_GOPATH/src/github.com/horgix/packer-builder-amazon-ebs-mock/packer_cache\nDetected home directory from env var: /home/horgix\nLoading builder: amazon-ebs-mock\nCreating plugin client for path: MY_GOPATH/src/github.com/horgix/packer-builder-amazon-ebs-mock/packer-builder-amazon-ebs-mock\nStarting plugin: MY_GOPATH/src/github.com/horgix/packer-builder-amazon-ebs-mock/packer-builder-amazon-ebs-mock []string{\"MY_GOPATH/src/github.com/horgix/packer-builder-amazon-ebs-mock/packer-builder-amazon-ebs-mock\"}\nWaiting for RPC address for: MY_GOPATH/src/github.com/horgix/packer-builder-amazon-ebs-mock/packer-builder-amazon-ebs-mock\npacker-builder-amazon-ebs-mock: Starting...\npacker-builder-amazon-ebs-mock: Plugin minimum port: 10000\npacker-builder-amazon-ebs-mock: Plugin maximum port: 25000\npacker-builder-amazon-ebs-mock: Plugin address: unix /tmp/packer-plugin481514017\npacker-builder-amazon-ebs-mock: Waiting for connection...\npacker-builder-amazon-ebs-mock: Serving a plugin connection...\nBuild debug mode: false\nForce build: false\nOn error:\nPreparing build: amazon-ebs-mock\npacker-builder-amazon-ebs-mock: Hello I'm a custom builder and this is the Prepare step\npacker-builder-amazon-ebs-mock: Initializing random generator...\nWaiting on builds to complete...\nStarting build run: amazon-ebs-mock\nRunning builder: amazon-ebs-mock\npacker-builder-amazon-ebs-mock: Hello I'm a custom builder\nui: ==\u003e amazon-ebs-mock: I'm doing nothing...\n==\u003e amazon-ebs-mock: I'm doing nothing...\nui: ==\u003e amazon-ebs-mock: Nothing done with success!\n==\u003e amazon-ebs-mock: Nothing done with success!\nui: ==\u003e amazon-ebs-mock: Generating mock Artifact...\n==\u003e amazon-ebs-mock: Generating mock Artifact...\nui: ==\u003e amazon-ebs-mock: Generated mock Artifact with success :)\n==\u003e amazon-ebs-mock: Generated mock Artifact with success :)\nui: Build 'amazon-ebs-mock' finished.\nBuilds completed. Waiting on interrupt barrier...\nui:\n==\u003e Builds finished. The artifacts of successful builds are:\nmachine readable: amazon-ebs-mock,artifact-count []string{\"1\"}\nBuild 'amazon-ebs-mock' finished.\n\n==\u003e Builds finished. The artifacts of successful builds are:\nmachine readable: amazon-ebs-mock,artifact []string{\"0\", \"builder-id\", \"\"}\nmachine readable: amazon-ebs-mock,artifact []string{\"0\", \"id\", \"ap-northeast-1:ami-12345678,ap-northeast-2:ami-12345678,ap-southeast-1:ami-12345678,ap-southeast-2:ami-12345678,ca-central-1:ami-12345678,eu-west-1:ami-12345678,eu-west-2:ami-12345678,us-west-2:ami-12345678\"}\nmachine readable: amazon-ebs-mock,artifact []string{\"0\", \"string\", \"AMIs were created:\\n\\nap-northeast-1: ami-12345678\\nap-northeast-2: ami-12345678\\nap-southeast-1: ami-12345678\\nap-southeast-2: ami-12345678\\nca-central-1: ami-12345678\\neu-west-1: ami-12345678\\neu-west-2: ami-12345678\\nus-west-2: ami-12345678\"}\nmachine readable: amazon-ebs-mock,artifact []string{\"0\", \"files-count\", \"0\"}\nmachine readable: amazon-ebs-mock,artifact []string{\"0\", \"end\"}\nui: --\u003e amazon-ebs-mock: AMIs were created:\n\nap-northeast-1: ami-12345678\nap-northeast-2: ami-12345678\nap-southeast-1: ami-12345678\nap-southeast-2: ami-12345678\nca-central-1: ami-12345678\neu-west-1: ami-12345678\neu-west-2: ami-12345678\nus-west-2: ami-12345678\nwaiting for all plugin processes to complete...\n--\u003e amazon-ebs-mock: AMIs were created:\n\nap-northeast-1: ami-12345678\nap-northeast-2: ami-12345678\nap-southeast-1: ami-12345678\nap-southeast-2: ami-12345678\nca-central-1: ami-12345678\neu-west-1: ami-12345678\neu-west-2: ami-12345678\nus-west-2: ami-12345678\nMY_GOPATH/src/github.com/horgix/packer-builder-amazon-ebs-mock/packer-builder-amazon-ebs-mock: plugin process exited\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhorgix%2Fpacker-builder-amazon-ebs-mock","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhorgix%2Fpacker-builder-amazon-ebs-mock","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhorgix%2Fpacker-builder-amazon-ebs-mock/lists"}