Ansible Reference: Handlers, block/rescue, Vault, and the Jinja2 Filters Worth Knowing
Ansible's real power is in the patterns that prevent you from re-running failed plays at 2am.
Handlers — only restart when something changed
tasks:
- name: Copy nginx config
copy: { src: nginx.conf.j2, dest: /etc/nginx/nginx.conf }
notify: ...
releaserun.hashnode.dev2 min read