A tool converting "AWS CloudFormation Template" to another cloud orchestrator template
Add this line to your application's Gemfile:
gem 'cfn_converter'And then execute:
$ bundle
Or install it yourself as:
$ gem install cfn_converter
cfn2heat cloudformation_template_filenameThis command is the same of below command:
cfnconv CfnConverter::Converters::OpenStackConverter cloudformation_template_filenameIf you wrote your own converter class, you can execute your converter as below:
cfnconv YOUR_OWN_CONVERTER_CLASS cloudformation_template_filename- Fork it ( https://github.com/[my-github-username]/cfn_converter/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request