Skip to content

Instantly share code, notes, and snippets.

@kenperkins
Created June 17, 2014 17:32
Show Gist options
  • Save kenperkins/1b13a4fa2ffe24f8214a to your computer and use it in GitHub Desktop.
Save kenperkins/1b13a4fa2ffe24f8214a to your computer and use it in GitHub Desktop.
Get Public Images from AWS
var client = pkgcloud.compute.createClient({
provider: 'amazon',
// your stuff here
});
client.getImages({ owners: ['amazon'] }, function (err, images) {
images.forEach(function (f) {
console.log(f.name);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment