Make it possible to set custom permissions for certificate files
This is in preparation for a role using OpenSMTPD.
This commit is contained in:
parent
7bb741c8e3
commit
f4a79fb4e2
3 changed files with 28 additions and 4 deletions
|
@ -30,3 +30,23 @@ argument_specs:
|
|||
description: The zone to use for publishing the TXT record.
|
||||
required: true
|
||||
type: str
|
||||
cert__fullchain_pem_permissions:
|
||||
description: Permissons for the `fullchain.pem`.
|
||||
type: str
|
||||
required: false
|
||||
default: "0660"
|
||||
cert__chain_pem_permissions:
|
||||
description: Permissons for the `chain.pem`.
|
||||
type: str
|
||||
required: false
|
||||
default: "0660"
|
||||
cert__cert_pem_permissions:
|
||||
description: Permissons for the `cert.pem`.
|
||||
type: str
|
||||
required: false
|
||||
default: "0660"
|
||||
cert__privkey_pem_permissions:
|
||||
description: Permissons for the `privkey.pem`.
|
||||
type: str
|
||||
required: false
|
||||
default: "0600"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue