vm-ansible/roles/webserver/templates/certbot.sh
Kristóf Torma 4e1833bbbf
Some checks reported errors
continuous-integration/drone/push Build was killed
add valid cert to internal communication
2023-03-05 18:26:08 +01:00

6 lines
131 B
Bash

#!/bin/bash
# {{ansible_managed}}
{% for server in webserver %}
certbot renew --nginx --cert-name {{ server.domain }}
{% endfor %}