cookiecutter-ansible-role
cookiecutter-ansible-role copied to clipboard
Cookie cutter recipe to easily create ansible roles.
Thank you for this repo, it's a terrific time saver. One issue I noticed: if read_user_yes_no(folder['question'], default_value=u'no'): if read_user_yes_no(folder['pre_hint'], default_value=u'no'): Should be if read_user_yes_no(folder['question'], default_value=u'no') == 'yes': if read_user_yes_no(folder['pre_hint'], default_value=u'no')...
Currently this cookiecutter is not following at least three of the [Ansible Galaxy best practices](https://galaxy.ansible.com/intro#good): 1. [README.md should be formatted with markdown](https://galaxy.ansible.com/intro#readme): see pull request #9 1. [Prefix variable names...
Currently generated roles do not include any test facility. I'll provide a pull request that implements testing with [Test-Kitchen](https://github.com/test-kitchen/test-kitchen) configured with the [kitchen-docker](https://github.com/test-kitchen/kitchen-docker) driver, and [kitchen-inspec](https://github.com/chef/kitchen-inspec). Let's talk about this...