-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tom Siewert <[email protected]>
- Loading branch information
1 parent
5413cab
commit 62bb55e
Showing
1 changed file
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,36 @@ | ||
# Ansible Role - iPXE CA | ||
|
||
Cross-sign Root CAs with your own CA for iPXE. | ||
An Ansible role to cross-sign all Root CAs with your own CA for iPXE. | ||
|
||
## Requirements | ||
|
||
* Ansible | ||
* CA used for cross-signing | ||
|
||
## Role Variables | ||
|
||
``` yaml | ||
ipxe_ca__web_path: '/var/www/ca' | ||
|
||
ipxe_ca__ca_cert_path: '/etc/ssl/private/ipxe.crt' | ||
ipxe_ca__ca_key_path: '/etc/ssl/private/ipxe.key' | ||
|
||
ipxe_ca__certificate_valid_days: 180 | ||
ipxe_ca__systemd_timer_enabled: true | ||
``` | ||
## Dependencies | ||
None. | ||
## Example Playbook | ||
``` yaml | ||
- hosts: all | ||
roles: | ||
- hetzner.ipxe_ca | ||
``` | ||
## License | ||
GPL-3.0 |