-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6938 from Checkmarx/kics-issue-6936
fix(community): common/password_and_secrets new allow rule added to permit the ansible playbook update_password field
- Loading branch information
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
assets/queries/common/passwords_and_secrets/test/negative57.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
- name: "Configure the MySQL user " | ||
community.mysql.mysql_user: | ||
login_user: "root" | ||
login_password: "{{ mysql_root_password }}" | ||
name: "{{ mysql_user }}" | ||
password: "{{ mysql_user_password }}" | ||
password_expire: "never" | ||
update_password: "on_create" |