--- | |
- hosts: 127.0.0.1 | |
connection: local | |
vars: | |
rest_hostname: {{ rest_hostname }} | |
rest_port: {{ rest_port }} | |
rest_json: {{ rest_json }} | |
tasks: | |
- name: Call Fabric REST API | |
uri: | |
url: http://{{ '{{' }} rest_hostname {{ '}}' }}:{{ '{{' }} rest_port {{ '}}' }}/{{ '{{' }} item.endpoint {{ '}}' }} #http://localhost:8181/onos/v1/network/configuration/ | |
body: "{{ '{{' }} rest_json {{ '}}' }}" | |
body_format: raw | |
method: POST | |
user: karaf | |
password: karaf |