fix linting and typo
This commit is contained in:
parent
92d485bea5
commit
b277f41d62
1 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
- name: Firewall rule to alloc ICMP v4 on all type codes
|
- name: Firewall rule to alloc ICMP v4 on all type codes
|
||||||
community.windows.win_firewall_rule:
|
community.windows.win_firewall_rule:
|
||||||
name: ICMP Allow incoming V4 echo request
|
name: ICMP Allow incoming V4 echo request
|
||||||
enabled: yes
|
enabled: true
|
||||||
state: present
|
state: present
|
||||||
profiles: "{{ win_firewall_icmp_profiles }}"
|
profiles: "{{ win_firewall_icmp_profiles }}"
|
||||||
action: allow
|
action: allow
|
||||||
|
@ -10,10 +10,10 @@
|
||||||
protocol: icmpv4
|
protocol: icmpv4
|
||||||
icmp_type_code: '*'
|
icmp_type_code: '*'
|
||||||
|
|
||||||
- name: Firewall rule to alloc ICMP v6 on all type codes
|
- name: Firewall rule to allow ICMP v6 on all type codes
|
||||||
community.windows.win_firewall_rule:
|
community.windows.win_firewall_rule:
|
||||||
name: ICMP Allow incoming V6 echo request
|
name: ICMP Allow incoming V6 echo request
|
||||||
enabled: yes
|
enabled: true
|
||||||
state: present
|
state: present
|
||||||
profiles: "{{ win_firewall_icmp_profiles }}"
|
profiles: "{{ win_firewall_icmp_profiles }}"
|
||||||
action: allow
|
action: allow
|
||||||
|
|
Loading…
Reference in a new issue