Add example for port range to win_firewall_rule_module (#63269)
This commit is contained in:
parent
cfe2beae46
commit
2e81b813dd
1 changed files with 9 additions and 0 deletions
|
@ -144,4 +144,13 @@ EXAMPLES = r'''
|
||||||
protocol: tcp
|
protocol: tcp
|
||||||
state: present
|
state: present
|
||||||
enabled: yes
|
enabled: yes
|
||||||
|
- name: Firewall rule to allow port range
|
||||||
|
win_firewall_rule:
|
||||||
|
name: Sample port range
|
||||||
|
localport: 5000-5010
|
||||||
|
action: allow
|
||||||
|
direction: in
|
||||||
|
protocol: tcp
|
||||||
|
state: present
|
||||||
|
enabled: yes
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue