https://github.com/bsedin/ansible-self-signed-certs
Ansible role to manage self signed certificates
https://github.com/bsedin/ansible-self-signed-certs
ansible ansible-role openssl self-signed ssl
Last synced: 2 months ago
JSON representation
Ansible role to manage self signed certificates
- Host: GitHub
- URL: https://github.com/bsedin/ansible-self-signed-certs
- Owner: bsedin
- License: mit
- Created: 2018-11-19T14:13:09.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-26T15:29:48.000Z (over 4 years ago)
- Last Synced: 2025-02-09T01:17:39.748Z (over 1 year ago)
- Topics: ansible, ansible-role, openssl, self-signed, ssl
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ansible-self-signed-certs
Ansible role to manage self signed certificates
Create `./library` directory in your ansible project:
```
mkdir ./library
```
And configure `ansible.cfg`:
```
[defaults]
roles_path = ./library
```
Add submodule:
```
git submodule add git@github.com:kressh/ansible-self-signed-certs.git library/self-signed-certs
```
Use role:
```yaml
---
- hosts: cdn01.yourserver.io
remote_user: ansible
become: true
roles:
- self-signed-certs
```
See default variables at `defaults/main.yml`.