Skip to content
Snippets Groups Projects
Commit f161512f authored by MyIgel's avatar MyIgel :fire:
Browse files

letsencrypt: use salt['pillar.get']

parent f1b9d29e
No related branches found
No related tags found
1 merge request!427letsencrypt: use salt['pillar.get']
Pipeline #21563 passed
# account
agree-tos = {{ pillar.letsencrypt.agree_tos | default(False) }}
email = {{ pillar.letsencrypt.email }}
agree-tos = {{ salt['pillar.get']('letsencrypt:agree_tos', False) }}
email = {{ salt['pillar.get']('letsencrypt:email') }}
# certificates
rsa-key-size = {{ pillar.letsencrypt.key_size | default(4096) }}
rsa-key-size = {{ salt['pillar.get']('letsencrypt:key_size', 4096) }}
# webroot challenge
authenticator = webroot
webroot-path = {{ pillar.letsencrypt.webroot_path }}
webroot-path = {{ salt['pillar.get']('letsencrypt:webroot_path') }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment