Compiler for AWS CloudFormation
This plugin requires Grunt ~0.4.5
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-cf-compiler --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-cf-compiler');
In your project's Gruntfile, add a section named cf_compiler
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
cf_compiler: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific file lists and/or options go here.
},
},
});
Type: String
Default value: 'yaml'
A string value to select the output format. JSON not yet implemented.
In this example, testing.yaml will be parsed and any nested stacks will be placed directly in the template. The output template will be in the YAML format.
grunt.initConfig({
cf_compiler: {
options: {},
files: [{
src: 'src/testing.yaml',
dest: 'dest/testing.yaml'
}],
},
});
Options not yet implemented.
grunt.initConfig({
cf_compiler: {
options: {
outputFormat: 'yaml'
},
files: [{
src: 'src/testing.yaml',
dest: 'dest/testing.yaml'
}],
},
});
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
- Additional testing of parameters.
- Merging stack input parameters
and outputs. - Prefixing substack resource names.
- JSON and YAML output options.
- Template validation using cfn-lint.
- Option to exclude specific nested stacks.
- Better documentation!!!
(Nothing yet)