Skip to content

Commit

Permalink
Set win_skip_for_test Var-1
Browse files Browse the repository at this point in the history
Signed-off-by: Frederick Witty <[email protected]>
  • Loading branch information
frederickw082922 committed Aug 23, 2023
1 parent 36f4172 commit 29495e7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,16 @@ win22stig_lengthy_search: false
# different environments. By Default This is set to false.
win22stig_cloud_based_system: false

# win2022stig_skip_secure_winrm is used in the playbook to skip over WINRM based controls that
# win_skip_for_test is used in the playbook to skip over WINRM based controls that
# may cause WINRM Basic Connection Type to be disabled.
# Setting win2022stig_skip_secure_winrm to 'false' will enable Secure Connection types only.
# Setting win_skip_for_test to 'false' will enable Secure Connection types only.
# WINRM Controls that will be skipped:
# WN22-CC-000470 - CAT1
# WN22-CC-000500 - CAT1
# WN22-CC-000480 - CAT2
# WN22-CC-000510 - CAT2
# WN22-CC-000520 - CAT2
win2022stig_skip_secure_winrm: false
win_skip_for_test: false

# CAT 1 rules
wn22_00_000030: true
Expand Down
4 changes: 2 additions & 2 deletions tasks/cat1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
datatype: dword
when:
- wn22_cc_000470
- not win2022stig_skip_secure_winrm
- not win_skip_for_test
tags:
- WN22-CC-000470
- CAT1
Expand All @@ -158,7 +158,7 @@
datatype: dword
when:
- wn22_cc_000500
- not win2022stig_skip_secure_winrm
- not win_skip_for_test
tags:
- WN22-CC-000500
- CAT1
Expand Down
6 changes: 3 additions & 3 deletions tasks/cat2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3222,7 +3222,7 @@
datatype: dword
when:
- wn22_cc_000480
- not win2022stig_skip_secure_winrm
- not win_skip_for_test
tags:
- WN22-CC-000480
- CAT2
Expand Down Expand Up @@ -3257,7 +3257,7 @@
datatype: dword
when:
- wn22_cc_000510
- not win2022stig_skip_secure_winrm
- not win_skip_for_test
tags:
- WN22-CC-000510
- CAT2
Expand All @@ -3276,7 +3276,7 @@
datatype: dword
when:
- wn22_cc_000520
- not win2022stig_skip_secure_winrm
- not win_skip_for_test
tags:
- WN22-CC-000520
- CAT2
Expand Down

0 comments on commit 29495e7

Please sign in to comment.