Add variables for certs
This commit is contained in:
parent
9ac0280a31
commit
cb88569fe1
2 changed files with 4 additions and 2 deletions
|
@ -1,3 +1,5 @@
|
|||
---
|
||||
# Default values for variables of the role
|
||||
# variable_name: value
|
||||
letsencrypt_account_email: certs@example.org
|
||||
domain: example.org
|
||||
|
|
|
@ -23,11 +23,11 @@
|
|||
state: stopped
|
||||
|
||||
- name: Request certificate for node-metrics
|
||||
shell: "certbot certonly --agree-tos --email certs@susurrando.com --standalone -n -d node-metrics-{{ inventory_hostname }}"
|
||||
shell: "certbot certonly --agree-tos --email {{ letsencrypt_account_email }} --standalone -n -d node-metrics-{{ inventory_hostname }}.{{ domain }}"
|
||||
args:
|
||||
creates: "/etc/letsencrypt/live/node-metrics-{{ inventory_hostname }}/fullchain.pem"
|
||||
|
||||
- name: Request certificate for postfix-metrics
|
||||
shell: "certbot certonly --agree-tos --email certs@susurrando.com --standalone --agree-tos --email gestor@susurrando.com -n -d postfix-metrics-{{ inventory_hostname }}"
|
||||
shell: "certbot certonly --agree-tos --email {{ letsencrypt_account_email }} --standalone -n -d postfix-metrics-{{ inventory_hostname }}.{{ domain }}"
|
||||
args:
|
||||
creates: "/etc/letsencrypt/live/postfix-metrics-{{ inventory_hostname }}/fullchain.pem"
|
||||
|
|
Loading…
Reference in a new issue