8000 GitHub - zambien/packer-resource: Concourse CI resource to build machine images with Packer
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

zambien/packer-resource

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Packer Build Resource

A Concourse CI resource to build new Amazon Machine Images (AMI) via Packer

Source Configuration

  • aws_access_key_id: Required. Your AWS access key ID.

  • aws_secret_access_key: Required. Your AWS secret access key.

  • region: Required. The AWS region to search for AMIs.

Behaviour

out: Build a new AMI

Parameters

All other parameters will be passed through to packer as variables.

Example

resource_types:
- name: packer
  type: docker-image
  source:
    repository: jdub/packer-resource

resources:
- name: build-ami
  type: packer
  source:
    aws_access_key_id: "..."
    aws_secret_access_key: "..."
    region: ap-southeast-2

jobs:
- name: my-ami
  plan:
  - put: build-ami
    params:
      template: packer_template.json
      var_file:
         - secrets.json
         - foo.json

About

Concourse CI resource to build machine images with Packer

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%
0