summaryrefslogtreecommitdiffstats
path: root/ansible/deployment_poc/tasks/netbox_query_cluster.yml
diff options
context:
space:
mode:
authorGeorg2022-01-05 23:59:13 +0100
committerGeorg2022-01-05 23:59:13 +0100
commit7bb88aaa661dc6756e862562c47368de11657f44 (patch)
tree545d6f1d86c1d42ed04d558450996c54fdca631d /ansible/deployment_poc/tasks/netbox_query_cluster.yml
parent0e53f4d766e95205b20951fd252f6118ce05352b (diff)
downloadsystem-7bb88aaa661dc6756e862562c47368de11657f44.tar.gz
system-7bb88aaa661dc6756e862562c47368de11657f44.tar.bz2
system-7bb88aaa661dc6756e862562c47368de11657f44.zip
Init Ansible NetBox DHCP POC deployment
Signed-off-by: Georg <georg@lysergic.dev>
Diffstat (limited to 'ansible/deployment_poc/tasks/netbox_query_cluster.yml')
-rw-r--r--ansible/deployment_poc/tasks/netbox_query_cluster.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/ansible/deployment_poc/tasks/netbox_query_cluster.yml b/ansible/deployment_poc/tasks/netbox_query_cluster.yml
new file mode 100644
index 0000000..1f948d1
--- /dev/null
+++ b/ansible/deployment_poc/tasks/netbox_query_cluster.yml
@@ -0,0 +1,14 @@
+---
+- name: Locate cluster hosts
+ ansible.builtin.uri:
+ url: "{{ endpoint }}/dcim/devices/?cluster_id={{ nb_vm.json.results[0].cluster.id }}"
+ client_cert: "{{ cert }}"
+ client_key: "{{ key }}"
+ method: GET
+ return_content: yes
+ headers:
+ Accept: application/json
+ Authorization: "Token {{ token }}"
+ register: nb_hosts
+ delegate_to: localhost
+