infra-nimbus/ansible/roles/get-geth-api-urls/tasks/consul/windows.yml

16 lines
466 B
YAML
Raw Normal View History

---
- name: Find available data centers
win_uri:
url: '{{ consul_catalog_url }}/datacenters'
content_type: 'application/json'
return_content: true
register: data_centers
- name: Find available geth websocket services
win_uri:
url: '{{ consul_catalog_url }}/service/{{ geth_node_api_consul_name }}?dc={{ item }}'
content_type: 'application/json'
return_content: true
with_items: '{{ data_centers.json }}'
register: geth_ws_services