Browse Source

promote variable to globals so that it can be used by other roles

master
Nicolas Massé 9 years ago
parent
commit
dc3bb1e3fe
  1. 7
      roles/sso/tasks/main.yml

7
roles/sso/tasks/main.yml

@ -121,11 +121,12 @@
changed_when: false changed_when: false
tags: status tags: status
- set_fact:
sso_route_name: '{{ route.stdout }}'
- name: SSO is ready ! - name: SSO is ready !
debug: msg="Login on https://{{ route.stdout }}/auth/admin with username = '{{ username.stdout }}' and password = '{{ password.stdout }}'" debug: msg="Login on https://{{ sso_route_name }}/auth/admin with username = '{{ username.stdout }}' and password = '{{ password.stdout }}'"
tags: status tags: status
- include: post-install.yml - include: post-install.yml
vars:
sso_route_name: "{{ route.stdout }}"
tags: post-install tags: post-install

Loading…
Cancel
Save