68 lines
2.8 KiB
Python
68 lines
2.8 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# (c) 2016 Michael Gruener <michael.gruener@chaosmoon.net>
|
||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||
|
|
||
|
|
||
|
class ModuleDocFragment(object):
|
||
|
|
||
|
# Standard files documentation fragment
|
||
|
DOCUMENTATION = """
|
||
|
requirements:
|
||
|
- "python >= 2.6"
|
||
|
- openssl
|
||
|
options:
|
||
|
account_key_src:
|
||
|
description:
|
||
|
- "Path to a file containing the ACME account RSA or Elliptic Curve
|
||
|
key."
|
||
|
- "RSA keys can be created with C(openssl rsa ...). Elliptic curve keys can
|
||
|
be created with C(openssl ecparam -genkey ...)."
|
||
|
- "Mutually exclusive with C(account_key_content)."
|
||
|
- "Required if C(account_key_content) is not used."
|
||
|
aliases: [ account_key ]
|
||
|
account_key_content:
|
||
|
description:
|
||
|
- "Content of the ACME account RSA or Elliptic Curve key."
|
||
|
- "Mutually exclusive with C(account_key_src)."
|
||
|
- "Required if C(account_key_src) is not used."
|
||
|
- "Warning: the content will be written into a temporary file, which will
|
||
|
be deleted by Ansible when the module completes. Since this is an
|
||
|
important private key — it can be used to change the account key,
|
||
|
or to revoke your certificates without knowing their private keys
|
||
|
—, this might not be acceptable."
|
||
|
version_added: "2.5"
|
||
|
acme_version:
|
||
|
description:
|
||
|
- "The ACME version of the endpoint."
|
||
|
- "Must be 1 for the classic Let's Encrypt ACME endpoint, or 2 for the
|
||
|
new standardized ACME v2 endpoint."
|
||
|
default: 1
|
||
|
choices: [1, 2]
|
||
|
version_added: "2.5"
|
||
|
acme_directory:
|
||
|
description:
|
||
|
- "The ACME directory to use. This is the entry point URL to access
|
||
|
CA server API."
|
||
|
- "For safety reasons the default is set to the Let's Encrypt staging
|
||
|
server (for the ACME v1 protocol). This will create technically correct,
|
||
|
but untrusted certificates."
|
||
|
- "For Let's Encrypt, all staging endpoints can be found here:
|
||
|
U(https://letsencrypt.org/docs/staging-environment/)"
|
||
|
- "For Let's Encrypt, the production directory URL for ACME v1 is
|
||
|
U(https://acme-v01.api.letsencrypt.org/directory), and the production
|
||
|
directory URL for ACME v2 is U(https://acme-v02.api.letsencrypt.org/directory)."
|
||
|
- "I(Warning): So far, the module has only been tested against Let's Encrypt
|
||
|
(staging and production) and against the Pebble testing server
|
||
|
(U(https://github.com/letsencrypt/Pebble))."
|
||
|
default: https://acme-staging.api.letsencrypt.org/directory
|
||
|
validate_certs:
|
||
|
description:
|
||
|
- Whether calls to the ACME directory will validate TLS certificates.
|
||
|
- I(Warning:) Should I(only ever) be set to C(no) for testing purposes,
|
||
|
for example when testing against a local Pebble server.
|
||
|
type: bool
|
||
|
default: 'yes'
|
||
|
version_added: 2.5
|
||
|
"""
|