Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tongueroo/guard-cloudformation
Automatically validates cloud formation templates
https://github.com/tongueroo/guard-cloudformation
Last synced: 3 months ago
JSON representation
Automatically validates cloud formation templates
- Host: GitHub
- URL: https://github.com/tongueroo/guard-cloudformation
- Owner: tongueroo
- License: mit
- Created: 2012-08-19T01:41:36.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-10-15T18:23:03.000Z (about 12 years ago)
- Last Synced: 2023-04-10T13:12:14.644Z (over 1 year ago)
- Language: Ruby
- Size: 121 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Guard::Cloudformation
[![Build History][2]][1] [![Dependency Status][4]][3]
[1]: http://travis-ci.org/tongueroo/guard-cloudformation
[2]: https://secure.travis-ci.org/tongueroo/guard-cloudformation.png?branch=master
[3]: https://gemnasium.com/tongueroo/guard-cloudformation
[4]: https://gemnasium.com/tongueroo/guard-cloudformation.pngGuard::Cloudformation automatically runs validates cloud formation templates via cfn-validate-template.
## Installation
Please be sure to AWS cfn cli tools install:
$ brew install aws-cfn-tools
Please be sure to have [Guard](https://github.com/guard/guard) installed before continuing.
Install the gem:
$ gem install guard-cloudformation
Add the guard-cloudformation definition to your Guardfile by running this command:
$ guard init cloudformation
## Options
```ruby
:all_on_start => false # Whether to run validate all Cloudformation templates on start up
# default: true:templates_path => "." # The path(s) to your Cloudformation templates
# default: ["templates"]:notification => false # Whether to display notifications after the validation is done running
# default: true
```