--- - name: Deploy Automated Office hosts: localhost become: true pre_tasks: - debug: msg: - "Client secret defined: {{ client_secret is defined }}" - "Client secret length: {{ client_secret | default('') | length }}" verbosity: 1 - name: "Verify required variables" fail: msg: "Client secret is not set or empty" when: client_secret is not defined or client_secret | default('') | trim == '' roles: - role: common - role: docker - role: nginx - role: services