From b277f41d6266005140ca6cbbe1564f2bb0314873 Mon Sep 17 00:00:00 2001 From: L3D Date: Wed, 1 Feb 2023 00:42:00 +0100 Subject: [PATCH] fix linting and typo --- tasks/firewall.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/firewall.yml b/tasks/firewall.yml index c123782..3c42c01 100644 --- a/tasks/firewall.yml +++ b/tasks/firewall.yml @@ -2,7 +2,7 @@ - name: Firewall rule to alloc ICMP v4 on all type codes community.windows.win_firewall_rule: name: ICMP Allow incoming V4 echo request - enabled: yes + enabled: true state: present profiles: "{{ win_firewall_icmp_profiles }}" action: allow @@ -10,10 +10,10 @@ protocol: icmpv4 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: name: ICMP Allow incoming V6 echo request - enabled: yes + enabled: true state: present profiles: "{{ win_firewall_icmp_profiles }}" action: allow