summaryrefslogtreecommitdiffstats
path: root/ansible/deployment_poc/tasks/netbox_query_vm.yml
blob: 52308f0ccbbafffa51d204cdd35ed9b3785dc4fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
  # consider ditching this block, would need to work around missing cluster ID in hostvars
- name: Query VM
  ansible.builtin.uri:
    url: "{{ endpoint }}/virtualization/virtual-machines/?name={{ inventory_hostname }}"
    client_cert: "{{ cert }}"
    client_key: "{{ key }}"
    method: GET
    return_content: yes
    headers:
      Accept: application/json
      Authorization: "Token {{ token }}"
  register: nb_vm
  delegate_to: localhost