---
- name: Allow access to Plex Media Server from LAN
  community.windows.win_firewall_rule:
    action: allow
    localport: "32400,3005,8324,32469"
    protocol: tcp
    group: "PlexMediaServer Full"
    remoteip: "{{ item }}"
    description: Allow full access to Plex Media Server from LAN

- name: Allow access to Plex Media Server from LAN
  community.windows.win_firewall_rule:
    action: allow
    localport: "5353,32410-32414,1900"
    protocol: udp
    group: "PlexMediaServer Full"
    remoteip: "{{ item }}"
    description: Allow full access to Plex Media Server from LAN
