Files
ansible/roles/windows_inbound_rule/tasks/main.yml
2024-07-12 12:58:40 +02:00

13 lines
252 B
YAML

---
# tasks file for inbound_rule
- name: Firewall rule to allow SMTP on TCP port 25
community.windows.win_firewall_rule:
name: CheckMK
localport: 6556
action: allow
direction: in
protocol: tcp
state: absent
enabled: yes