Skip to content

Commit

Permalink
win_regedit parameter renamed
Browse files Browse the repository at this point in the history
According to the documentation, the new parameters are name
(instead of value) and type (instead of datatype). This patch
renames these occurrences.
  • Loading branch information
gberginc committed Aug 18, 2023
1 parent 7e2fa51 commit 7377290
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions tasks/section18.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,9 +218,9 @@
ansible.windows.win_regedit:
path: HKLM:\SYSTEM\CurrentControlSet\Services\NetBT\Parameters
state: present
value: NodeType
name: NodeType
data: 2
datatype: dword
type: dword
when:
- win16cis_rule_18_3_6
tags:
Expand All @@ -233,9 +233,9 @@
ansible.windows.win_regedit:
path: HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\Wdigest
state: present
value: UseLogonCredential
name: UseLogonCredential
data: 0
datatype: dword
type: dword
when:
- win16cis_rule_18_3_7
tags:
Expand All @@ -248,9 +248,9 @@
ansible.windows.win_regedit:
path: HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
state: present
value: AutoAdminLogon
name: AutoAdminLogon
data: 0
datatype: string
type: string
when:
- win16cis_rule_18_4_1
tags:
Expand All @@ -263,9 +263,9 @@
ansible.windows.win_regedit:
path: HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters
state: present
value: DisableIPSourceRouting
name: DisableIPSourceRouting
data: 2
datatype: dword
type: dword
when:
- win16cis_rule_18_4_2
tags:
Expand All @@ -278,9 +278,9 @@
ansible.windows.win_regedit:
path: HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
state: present
value: DisableIPSourceRouting
name: DisableIPSourceRouting
data: 2
datatype: dword
type: dword
when:
- win16cis_rule_18_4_3
tags:
Expand All @@ -293,9 +293,9 @@
ansible.windows.win_regedit:
path: HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
state: present
value: EnableICMPRedirect
name: EnableICMPRedirect
data: 0
datatype: dword
type: dword
when:
- win16cis_rule_18_4_4
tags:
Expand All @@ -308,9 +308,9 @@
ansible.windows.win_regedit:
path: HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
state: present
value: KeepAliveTime
name: KeepAliveTime
data: 300000
datatype: dword
type: dword
when:
- win16cis_rule_18_4_5
tags:
Expand Down

0 comments on commit 7377290

Please sign in to comment.