diff options
author | Christian Segundo | 2023-04-20 20:56:44 +0200 |
---|---|---|
committer | Christian Segundo | 2023-04-20 20:56:44 +0200 |
commit | c12ca41df0463baf70ca78a5b62fa923b676ec47 (patch) | |
tree | 61c9e194d940752e847a7bda97f71138e8e4e0da | |
parent | b4287df317d52d044c1aa56ffd36e9bbe153b91f (diff) | |
download | certbot-dns-cloudflare-c12ca41df0463baf70ca78a5b62fa923b676ec47.tar.gz |
misc vars
-rw-r--r-- | defaults/main.yml | 1 | ||||
-rw-r--r-- | tasks/main.yaml | 7 |
2 files changed, 7 insertions, 1 deletions
diff --git a/defaults/main.yml b/defaults/main.yml index a344f54..2a9a1c1 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -2,4 +2,3 @@ certbot_auto_renew_user: root certbot_create_if_missing: true certbot_install_method: package -certbot_create_method: standalone diff --git a/tasks/main.yaml b/tasks/main.yaml index 6d4e69d..16c9fc9 100644 --- a/tasks/main.yaml +++ b/tasks/main.yaml @@ -37,3 +37,10 @@ - name: Create certificates import_role: name: geerlingguy.certbot + vars: + certbot_auto_renew_user: "{{certbot_auto_renew_user}}" + certbot_create_if_missing: "{{certbot_create_if_missing}}" + certbot_install_method: "{{certbot_install_method}}" + certbot_create_method: "{{certbot_create_method}}" + certbot_create_standalone_stop_services: "{{certbot_create_standalone_stop_services}}" + certbot_create_command: "{{certbot_create_command}}" |