mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix example with proceccModel in win_iis_webapppool (#32971)
The attribute processModel.userName have to be written i camelCase. Otherwise this fails silently.
This commit is contained in:
parent
3fee14a49b
commit
1eae3b6b59
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ EXAMPLES = r'''
|
|||
attributes:
|
||||
managedPipelineMode: Classic
|
||||
processModel.identityType: SpecificUser
|
||||
processModel.username: '{{ansible_user}}'
|
||||
processModel.userName: '{{ansible_user}}'
|
||||
processModel.password: '{{ansible_password}}'
|
||||
processModel.loadUserProfile: True
|
||||
|
||||
|
|
Loading…
Reference in a new issue