lint fixes
This commit is contained in:
parent
2873b64ba3
commit
ce4aa596d6
|
|
@ -4,13 +4,17 @@ galaxy_info:
|
|||
author: 'AnsibleGuy <guy@ansibleguy.net>'
|
||||
namespace: 'ansibleguy'
|
||||
license: 'GPLv3'
|
||||
issue_tracker_url: 'https://github.com/ansibleguy/ROLE/issues'
|
||||
issue_tracker_url: 'https://github.com/ansibleguy/infra_certs/issues'
|
||||
min_ansible_version: 2.9.10
|
||||
description: ''
|
||||
description: 'Meat-role to generate/manage certificates for other roles'
|
||||
platforms:
|
||||
- name: Debian
|
||||
versions:
|
||||
- bullseye
|
||||
galaxy_tags: []
|
||||
galaxy_tags:
|
||||
- 'certificates'
|
||||
- 'certs'
|
||||
- 'letsencrypt'
|
||||
- 'certbot'
|
||||
|
||||
collections: []
|
||||
|
|
|
|||
|
|
@ -6,6 +6,9 @@
|
|||
ansible.builtin.file:
|
||||
path: "{{ config_ca.ca.path | default(config_ca.path, true) }}"
|
||||
state: directory
|
||||
mode: 0750
|
||||
owner: "{{ config_ca.owner_key }}"
|
||||
group: "{{ config_ca.group_key }}"
|
||||
|
||||
- name: Certificates | Internal | Minimal CA | Generate ca private key (encrypted key)
|
||||
community.crypto.openssl_privatekey:
|
||||
|
|
|
|||
|
|
@ -16,6 +16,9 @@
|
|||
ansible.builtin.file:
|
||||
path: "{{ CERT_CONFIG.path }}"
|
||||
state: directory
|
||||
mode: 0750
|
||||
owner: "{{ CERT_CONFIG.owner_key }}"
|
||||
group: "{{ CERT_CONFIG.group_key }}"
|
||||
tags: [certs, ca]
|
||||
|
||||
- name: Certificates | Internal | Minimal CA
|
||||
|
|
|
|||
Loading…
Reference in New Issue