|
|
@ -25,4 +25,36 @@ letsencrypt_challenge: http |
|
|
|
# alt_names: |
|
|
|
# alt_names: |
|
|
|
# - directory.domain.com |
|
|
|
# - directory.domain.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
letsencrypt_base_hooks: |
|
|
|
|
|
|
|
clean_challenge: | |
|
|
|
|
|
|
|
#!/bin/bash -e |
|
|
|
|
|
|
|
# Managed by ansible, manual modifications will be lost |
|
|
|
|
|
|
|
deploy_cert: | |
|
|
|
|
|
|
|
#!/bin/bash -e |
|
|
|
|
|
|
|
# Managed by ansible, manual modifications will be lost |
|
|
|
|
|
|
|
deploy_challenge: | |
|
|
|
|
|
|
|
#!/bin/bash -e |
|
|
|
|
|
|
|
# Managed by ansible, manual modifications will be lost |
|
|
|
|
|
|
|
exit_hook: | |
|
|
|
|
|
|
|
#!/bin/bash -e |
|
|
|
|
|
|
|
# Managed by ansible, manual modifications will be lost |
|
|
|
|
|
|
|
generate_csr: | |
|
|
|
|
|
|
|
#!/bin/bash -e |
|
|
|
|
|
|
|
# Managed by ansible, manual modifications will be lost |
|
|
|
|
|
|
|
invalid_challenge: | |
|
|
|
|
|
|
|
#!/bin/bash -e |
|
|
|
|
|
|
|
# Managed by ansible, manual modifications will be lost |
|
|
|
|
|
|
|
request_failure: | |
|
|
|
|
|
|
|
#!/bin/bash -e |
|
|
|
|
|
|
|
# Managed by ansible, manual modifications will be lost |
|
|
|
|
|
|
|
startup_hook: | |
|
|
|
|
|
|
|
#!/bin/bash -e |
|
|
|
|
|
|
|
# Managed by ansible, manual modifications will be lost |
|
|
|
|
|
|
|
unchanged_cert: | |
|
|
|
|
|
|
|
#!/bin/bash -e |
|
|
|
|
|
|
|
# Managed by ansible, manual modifications will be lost |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
letsencrypt_extra_hooks: {} |
|
|
|
|
|
|
|
letsencrypt_hooks: "{{ letsencrypt_base_hooks | combine(letsencrypt_extra_hooks, recursive=True) }}" |
|
|
|
|
|
|
|
|
|
|
|
... |
|
|
|
... |
|
|
|