mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
win_iis_webapppool: stop any passwords from being returned (#33931)
This commit is contained in:
parent
cae14e16ac
commit
0ca828ebab
2 changed files with 6 additions and 5 deletions
|
@ -305,9 +305,11 @@ foreach ($element in $elements) {
|
|||
|
||||
foreach ($attribute in $attribute_collection) {
|
||||
$attribute_name = $attribute.Name
|
||||
$attribute_value = $attribute_parent.$attribute_name
|
||||
if ($attribute_name -notlike "*password*") {
|
||||
$attribute_value = $attribute_parent.$attribute_name
|
||||
|
||||
$result.info.$element.Add($attribute_name, $attribute_value)
|
||||
$result.info.$element.Add($attribute_name, $attribute_value)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue