summaryrefslogtreecommitdiffstats
path: root/ansible/deployment_poc/tasks/netbox_query_site.yml
blob: 29956b7e5652adc350b4657ce1d46ac5b0fca867 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
- name: Query site
  ansible.builtin.uri:
    url: "{{ endpoint }}/dcim/sites/?slug={{ site }}"
    client_cert: "{{ cert }}"
    client_key: "{{ key }}"
    method: GET
    return_content: yes
    headers:
      Accept: application/json
      Authorization: "Token {{ token }}"
  register: nb_site
  delegate_to: localhost
  tags:
    - init_dp
    - init_ssh