Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge pull request #3 from saltstack-formulas/master #86

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion letsencrypt/domains.sls
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
- require:
- file: {{ check_cert_cmd }}


{% endif %}

{%- set default_authenticator = '--authenticator ' ~ letsencrypt.authenticators['default']
Expand All @@ -43,7 +44,8 @@
{%- set default_installer = '--installer ' ~ letsencrypt.installers['default']
if letsencrypt.installers['default'] is defined else '' %}

{% for setname, domainlist in letsencrypt.domainsets.items() %}
{% for setname, domainlist in letsencrypt.get('domainsets', {}).items() %}


# Set an authenticator and a installer for the domainset or use defaults set above
{%- set authenticator = '--authenticator ' ~ letsencrypt.authenticators[setname]
Expand Down