win_iis_webapppool: stop any passwords from being returned (#33931)

pull/28466/head
Jordan Borean 7 years ago committed by GitHub
parent cae14e16ac
commit 0ca828ebab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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)
}
}
}

@ -416,7 +416,7 @@
state: present
attributes:
startMode: AlwaysRunning
processModel.identityType: 3
processModel.identityType: SpecificUser
processModel.userName: '{{ansible_user}}'
processModel.password: '{{ansible_password}}'
register: iis_attributes_new_check
@ -434,7 +434,7 @@
state: present
attributes:
startMode: AlwaysRunning
processModel.identityType: 3
processModel.identityType: SpecificUser
processModel.userName: '{{ansible_user}}'
processModel.password: '{{ansible_password}}'
register: iis_attributes_new
@ -446,7 +446,6 @@
- iis_attributes_new.info.attributes.startMode == 'AlwaysRunning'
- iis_attributes_new.info.processModel.identityType == 'SpecificUser'
- iis_attributes_new.info.processModel.userName == ansible_user
- iis_attributes_new.info.processModel.password == ansible_password
- name: change attributes for newer IIS version again
win_iis_webapppool:

Loading…
Cancel
Save