From f8c0e0b705cb0c86527a956d20d1a137e4096e82 Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Mon, 2 Aug 2021 13:51:41 +0200 Subject: [PATCH] Trivial: fix a warning in bifrost-keystone-client-config Change-Id: Ic8ce68ea7e99bf35eb0fa9dc3d508d101a5241f9 --- .../bifrost-keystone-client-config/tasks/main.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/playbooks/roles/bifrost-keystone-client-config/tasks/main.yml b/playbooks/roles/bifrost-keystone-client-config/tasks/main.yml index e12f74b3e..8663c2a93 100644 --- a/playbooks/roles/bifrost-keystone-client-config/tasks/main.yml +++ b/playbooks/roles/bifrost-keystone-client-config/tasks/main.yml @@ -23,13 +23,13 @@ config_project_domain_id: "{{ config_project_domain_id|default('default') }}" config_user_domain_id: "{{ config_user_domain_id|default('default') }}" when: - - "{{ enable_keystone | default(false) | bool }}" - - "{{ clouds is undefined }}" - - "{{ config_username is defined }}" - - "{{ config_password is defined }}" - - "{{ config_project_name is defined }}" - - "{{ config_region_name is defined }}" - - "{{ config_auth_url is defined }}" + - enable_keystone | default(false) | bool + - clouds is undefined + - config_username is defined + - config_password is defined + - config_project_name is defined + - config_region_name is defined + - config_auth_url is defined - name: "Generate TLS parameters" include_role: