我正在尝试使用win_credential模块向我们的服务器中添加一些通用凭据,但是每次运行ansible时,都会出现错误“无法访问用户的凭据存储,请使用turn运行该模块” 但是我已经使用了变得变得如此吗?
这是我的角色:
- name: Add generic credentials
win_credential:
name: 10.3.10.222
username: "MY_USERNAME"
secret: "MY_PASSWORD"
type: domain_password
state: present
vars:
ansible_become: yes
ansible_become_method: runas
ansible_become_user: administrator