From 6397c2abf5806e1738ad2ae2a7bc068ea818207c Mon Sep 17 00:00:00 2001 From: chenxing Date: Mon, 7 May 2018 10:38:47 +0800 Subject: [PATCH] Extra fix for removed module_extra_vars Some variables should be modified too, just like this commit: https://review.openstack.org/552863 Change-Id: Id43eefb948a05de03d19c46048b6151bf6f5dc0a Related-Bug: #1769463 --- ansible/roles/manila/tasks/register.yml | 2 +- ansible/roles/panko/tasks/register.yml | 2 +- ansible/roles/sahara/tasks/register.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/roles/manila/tasks/register.yml b/ansible/roles/manila/tasks/register.yml index 0dd6a574f2..ac54525c58 100644 --- a/ansible/roles/manila/tasks/register.yml +++ b/ansible/roles/manila/tasks/register.yml @@ -30,6 +30,6 @@ password: "{{ manila_keystone_password }}" role: "admin" region_name: "{{ openstack_region_name }}" - auth: "{{ '{{ openstack_manila_auth }}' }}" + auth: "{{ openstack_manila_auth }}" endpoint_type: "{{ openstack_interface }}" run_once: True diff --git a/ansible/roles/panko/tasks/register.yml b/ansible/roles/panko/tasks/register.yml index 2e55873f9d..2247d3ada7 100644 --- a/ansible/roles/panko/tasks/register.yml +++ b/ansible/roles/panko/tasks/register.yml @@ -27,6 +27,6 @@ password: "{{ panko_keystone_password }}" role: "admin" region_name: "{{ openstack_region_name }}" - auth: "{{ '{{ openstack_panko_auth }}' }}" + auth: "{{ openstack_panko_auth }}" endpoint_type: "{{ openstack_interface }}" run_once: True diff --git a/ansible/roles/sahara/tasks/register.yml b/ansible/roles/sahara/tasks/register.yml index 667cdd4f23..2dcde8228f 100644 --- a/ansible/roles/sahara/tasks/register.yml +++ b/ansible/roles/sahara/tasks/register.yml @@ -27,6 +27,6 @@ password: "{{ sahara_keystone_password }}" role: "admin" region_name: "{{ openstack_region_name }}" - auth: "{{ '{{ openstack_sahara_auth }}' }}" + auth: "{{ openstack_sahara_auth }}" endpoint_type: "{{ openstack_interface }}" run_once: True