Revert "If no DNS provider key is set, make sure there is a default"

This reverts commit 995f4ebcec.
main
Georg Krause 2022-03-26 16:02:08 +01:00
parent e3cfcf0df1
commit 094c990520
Signed by: gcrkrause
GPG Key ID: 2970D504B2183D22
1 changed files with 3 additions and 3 deletions

View File

@ -70,9 +70,9 @@
cmd: ./acme.sh --issue -d {{ item.name }} -d '*.{{ item.name }}' --dns dns_{{ item.dns_provider }}
chdir: ~/.acme.sh
environment:
INWX_User: "{{ inwx_user | default('') }}"
INWX_Password: "{{ inwx_pass | default('') }}"
GANDI_LIVEDNS_KEY: "{{ gandi_livedns_key | default('') }}"
INWX_User: "{{ inwx_user }}"
INWX_Password: "{{ inwx_pass }}"
GANDI_LIVEDNS_KEY: "{{ gandi_livedns_key }}"
loop: "{{ domains }}"
register: cert_result
changed_when: cert_result.rc == 0 and "Cert success." in cert_result.stdout