someone please help me out. I cannot get win_template or win_copy to work. I’m able to do a simple ipconfig test to confirm that ansible is working with windows I’ve got some powershell scripts that I need to have in a template with vars so I can put them on the windows box and run them. I’ve got a roles structure setup
when I do this>>
-
name: check file dir
win_stat: path=C:\temp
register: win_test -
name: debug
debug: var=win_test
output of the debug
ok: [172.16.0.81] => {
“var”: {
“win_test”: {
“changed”: false,
“invocation”: {
“module_args”: “path=C:\temp”,
“module_name”: “win_stat”
},
“stat”: {
“exists”: true,
“isdir”: true
}
}
}
}
- name: copy template
win_template: dest=C:\temp src=“{{ template_ps1 }}”
but when I try and use the win_template I get:
“ERROR: win_template is not a legal parameter in an Ansible task or handler”