ansible_role_win_obs_studio.../tasks/firewall.yml
2024-02-28 01:12:39 +01:00

10 lines
270 B
YAML

---
- name: Firewall rule to allow OBS-Studio Node-Exporter Monitoring on TCP port 9407
community.windows.win_firewall_rule:
name: obs-studio-monitoring
localport: 9407
action: allow
direction: in
protocol: tcp
state: present
enabled: true