cannot run an ansible playbook with vsphere_guest support

1,322 views
Skip to first unread message

John Shen

unread,
May 1, 2014, 1:06:10 PM5/1/14
to ansible...@googlegroups.com
$ ansible-playbook vmtest.yml 
ERROR: vsphere_guest is not a legal parameter in an Ansible Playbook
$ ansible --version
ansible 1.6 (devel c0f92317ef) last updated 2014/05/01 10:56:27 (GMT -600)

i used the first example here with only auth and vcenter info changed. thanks for any help!


$ cat vmtest.yml
# Create a new VM on an ESX server
# Returns changed = False when the VM already exists
# Returns changed = True and a adds ansible_facts from the new VM
# State will set the power status of a guest upon creation. Use powered_on to create and boot.
# Options ['state', 'vm_extra_config', 'vm_disk', 'vm_nic', 'vm_hardware', 'esxi'] are required together

- vsphere_guest:
    vcenter_hostname: myvcenter
.
.
.

James Cammarata

unread,
May 1, 2014, 1:14:30 PM5/1/14
to ansible...@googlegroups.com
If you do the following, does it work as expected?

- name: test vsphere
  vsphere_guest:
    ...

If not, it would seem that you've got some issue with your module path.



--
You received this message because you are subscribed to the Google Groups "Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ansible-proje...@googlegroups.com.
To post to this group, send email to ansible...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/fb954b06-a0dd-4801-bb00-552c422eb618%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Michael DeHaan

unread,
May 1, 2014, 5:27:47 PM5/1/14
to ansible...@googlegroups.com

You are writing a list of tasks so can't just run the task file directly.

- hosts: localhost
  tasks:
    - include: your_other_file.yml
    - shell: task goes here

ETC

So it thinks you are defining a play, not a list of tasks, and needs vsphere_guest at task level.




Prashant Shelke

unread,
Jun 24, 2015, 3:37:52 PM6/24/15
to ansible...@googlegroups.com
Hi,

Did you get the resolution to the problem? I am also facing similar issue.

Thanks,
Prashant

einarc

unread,
Jul 17, 2015, 4:58:59 PM7/17/15
to ansible...@googlegroups.com
The solution is to index the vsphere_guest module call under tasks, as Michael Dehaan posted, like this:

- hosts: localhost
  tasks:
    - vsphere_guest:
    vcenter_hostname: myvcenter

Billy B

unread,
Apr 20, 2017, 5:10:35 PM4/20/17
to Ansible Project
Hi,

I am having the same problem.

How can I check my module path please?

thanks
Reply all
Reply to author
Forward
0 new messages