fixed meta, linting updates, added ansible-lint config and test-badges
This commit is contained in:
parent
b5691e7aac
commit
8ef970d32a
|
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
skip_list:
|
||||||
|
- 'var-naming'
|
||||||
|
- 'no-handler'
|
||||||
|
- 'role-name'
|
||||||
|
- 'ignore-errors'
|
||||||
|
- 'yaml'
|
||||||
|
|
@ -6,4 +6,4 @@ rules:
|
||||||
truthy:
|
truthy:
|
||||||
allowed-values: ['true', 'false', 'yes', 'no']
|
allowed-values: ['true', 'false', 'yes', 'no']
|
||||||
line-length:
|
line-length:
|
||||||
max: 150
|
max: 160
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
Ansible Role to create certificates to use on a linux server.
|
Ansible Role to create certificates to use on a linux server.
|
||||||
|
|
||||||
|
[](https://molecule.readthedocs.io/en/latest/)
|
||||||
|
[](https://yamllint.readthedocs.io/en/stable/)
|
||||||
|
[](https://ansible-lint.readthedocs.io/en/latest/)
|
||||||
[](https://galaxy.ansible.com/ansibleguy/infra_certs)
|
[](https://galaxy.ansible.com/ansibleguy/infra_certs)
|
||||||
[](https://galaxy.ansible.com/ansibleguy/infra_certs)
|
[](https://galaxy.ansible.com/ansibleguy/infra_certs)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,8 @@
|
||||||
galaxy_info:
|
galaxy_info:
|
||||||
author: 'AnsibleGuy <guy@ansibleguy.net>'
|
author: 'AnsibleGuy <guy@ansibleguy.net>'
|
||||||
namespace: 'ansibleguy'
|
namespace: 'ansibleguy'
|
||||||
readme: 'README.md'
|
|
||||||
license: 'GPLv3'
|
license: 'GPLv3'
|
||||||
repository: 'https://github.com/ansibleguy/ROLE'
|
|
||||||
issue_tracker_url: 'https://github.com/ansibleguy/ROLE/issues'
|
issue_tracker_url: 'https://github.com/ansibleguy/ROLE/issues'
|
||||||
github_branch: 'stable'
|
|
||||||
min_ansible_version: 2.9.10
|
min_ansible_version: 2.9.10
|
||||||
description: ''
|
description: ''
|
||||||
platforms:
|
platforms:
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
register: enabled_nginx_sites
|
register: enabled_nginx_sites
|
||||||
check_mode: false
|
check_mode: false
|
||||||
|
|
||||||
- name: Certificates | Debian | LetsEncrypt Certbot | Nginx | Deploying temporary apache site
|
- name: Certificates | Debian | LetsEncrypt Certbot | Nginx | Deploying temporary nginx site
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: 'templates/etc/nginx/sites-enabled/le_dummy.j2'
|
src: 'templates/etc/nginx/sites-enabled/le_dummy.j2'
|
||||||
dest: '/etc/nginx/sites-enabled/tmp_le_dummy'
|
dest: '/etc/nginx/sites-enabled/tmp_le_dummy'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue