Skip to content

cisagov/pre-commit-packer

Repository files navigation

pre-commit-packer

GitHub Build Status

This is a set of pre-commit hooks intended for projects using Packer.

Available Hooks

Note

You can pass arguments to these hooks through the normal use of the args block in your pre-commit configuration. These arguments should align with whatever options you wish to pass to the underlying packer command. However, any arguments that take values must be in the form -argument=value rather than -argument value to ensure proper processing.

packer_fmt

This hook checks that any .pkr.hcl or .pkrvars.hcl files are properly formatted using the packer fmt command. The hook will only check files by default, but that behavior can be overridden by changing the arguments passed to the hook.

packer_validate

This hook checks that a Packer configuration is valid by running packer validate against any directory that houses .pkr.hcl files.

Usage

repos:
  - repo: https://github.com/cisagov/pre-commit-packer
    rev: v0.1.0
    hooks:
      - id: packer_fmt
      - id: packer_validate

Contributing

We welcome contributions! Please see CONTRIBUTING.md for details.

License

This project is in the worldwide public domain.

This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication.

All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.