2023-04-25 13:49:45 +02:00
|
|
|
---
|
|
|
|
argument_specs:
|
|
|
|
main:
|
|
|
|
short_description: Orders and renews certificates from Let's Encrypt
|
|
|
|
options:
|
|
|
|
cert__domains:
|
|
|
|
description: Domains for which to issue a certificate. Must be in the same DNS zone.
|
|
|
|
required: true
|
|
|
|
type: list
|
|
|
|
elements: str
|
|
|
|
cert__owner:
|
|
|
|
description: Owner of the certificate files.
|
|
|
|
required: false
|
|
|
|
type: str
|
|
|
|
default: root
|
|
|
|
cert__group:
|
|
|
|
description: Group of the certificate files.
|
|
|
|
required: false
|
|
|
|
type: str
|
|
|
|
default: root
|
2023-04-25 18:03:59 +02:00
|
|
|
cert__acme_account_email:
|
|
|
|
description: E-Mail address for ACME account
|
2023-04-25 13:49:45 +02:00
|
|
|
required: true
|
2023-04-25 18:03:59 +02:00
|
|
|
type: str
|
2023-04-27 23:38:14 +02:00
|
|
|
cert__bind_9_host:
|
|
|
|
description: The machine running BIND 9.
|
2023-04-25 13:49:45 +02:00
|
|
|
required: true
|
2023-04-27 23:38:14 +02:00
|
|
|
type: str
|
|
|
|
cert__bind_9_zone:
|
|
|
|
description: The zone to use for publishing the TXT record.
|
|
|
|
required: true
|
|
|
|
type: str
|