diff --git a/examples/playbook/issue_113.yml b/examples/playbook/issue_113.yml new file mode 100644 index 00000000..b28396a6 --- /dev/null +++ b/examples/playbook/issue_113.yml @@ -0,0 +1,19 @@ + + +- hosts: all + tasks: + - name: Get auth token + uri: + url: "https://httpbin.org/post" + method: POST + body: "client_id=admin-cli&username=admin&\ + password=keycloak_admin_password&grant_type=password" + return_content: true + validate_certs: false + register: r_token + no_log: false + run_once: true + delegate_to: localhost + + +