├── .travis.yml ├── LICENSE ├── README.md ├── ansible.cfg ├── defaults └── main.yml ├── meta └── main.yml ├── tasks ├── generate.yml └── main.yml ├── templates └── sslcert.conf.j2 └── test.yml /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdauphant/ansible-role-ssl-certs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdauphant/ansible-role-ssl-certs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdauphant/ansible-role-ssl-certs/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | roles_path = ../ 3 | -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdauphant/ansible-role-ssl-certs/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdauphant/ansible-role-ssl-certs/HEAD/meta/main.yml -------------------------------------------------------------------------------- /tasks/generate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdauphant/ansible-role-ssl-certs/HEAD/tasks/generate.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdauphant/ansible-role-ssl-certs/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /templates/sslcert.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdauphant/ansible-role-ssl-certs/HEAD/templates/sslcert.conf.j2 -------------------------------------------------------------------------------- /test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdauphant/ansible-role-ssl-certs/HEAD/test.yml --------------------------------------------------------------------------------