I have done this. The playbook below does it: :)
It determines the UUID of a VM (myvm) and powers it on.
It also run a couple scripts to start an Oracle database server on the VM which is a Linux host. f the VM is a Windows server you should use win_command instead of “command”. win_command is documented on the Ansible site here → https://docs.ansible.com/ansible/latest/modules/list_of_windows_modules.html
---
- name: Determine the UUID for VM myvm and power it on
# nutanixhostname is the name of the nutanix cluster as saved in /etc/ansible/hosts
hosts: nutanixhostname
gather_facts: false
connection: local
vars:
# I use the v3 API to get the UUID and the v2 API to power on the VM
base_urlv2: "https://ntnxb.irea.us:9440/PrismGateway/services/rest/v2.0"
base_urlv3: "https://ntnxb.irea.us:9440/api/nutanix/v3"
# Hard-coded Nutanix username and pasword
username: adminuser
password: adminoassword
# ALternatively, best practice is to retrieve the stored username and password
# username: "{{ lookup('env', 'ANSIBLE_USER') }}"
# password: "{{ lookup('env', 'ANSIBLE_PASSWORD') }}"
tasks:
- name: Query Nutanix to get UUID of VM myvm
uri:
url: "{{ base_urlv3 }}/vms/list"
validate_certs: no
force_basic_auth: yes
method: POST
status_code: 200
user: "{{ username }}"
password: "{{ password }}"
return_content: yes
body_format: json
body:
# Important: "myvm" is case sensitive to be sure to specify the VM name as displayed in Prism ELement
filter: "vm_name==myvm"
kind: "vm"
sort_order: "ASCENDING"
offset: 0
length: 1
sort_attribute: ""
register: retvalq
- name: Determine UUID for myvm
set_fact:
vm_uuid: "{{ retvalq.json.entities[0].metadata.uuid }}"
- name: Start the VM
uri:
url: "{{ base_urlv2 }}/vms/{{ vm_uuid }}/set_power_state"
validate_certs: no
force_basic_auth: yes
method: POST
status_code: 200,201
user: "{{ username }}"
password: "{{ password }}"
return_content: no
body_format: json
body:
transition: "ON"
register: retvalp
- name: Wait 4 minutes for the VM to boot
pause:
seconds: 240
- name: Start the Oracle database
hosts: myvm
gather_facts: true
become: yes
# If you are using roles ...
# roles:
# - oradbhost
tasks:
- name: Start the Oracle listener
command: "sudo -i -u oracle /oracle/product/11.2.0/dbhome_1/bin/lsnrctl start"
- name: Start the Oracle database
command: "sudo -i -u oracle /oracle/localbin/start_db mydatabase"