firewalldを停止して無効化してみました。
cat firewalld.disable.yml
---
- hosts: all
become: yes
tasks:
- name: Start and enable firewalld
service:
name: firewalld
state: stopped
enabled: no
ansible-playbook -i inventory.ini firewalld.disable.yml
次もただの真似です。