From accd3c02a9ac68d58a028660b23636b7e700a25a Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Sun, 17 Jan 2016 21:16:58 +0000 Subject: [PATCH] Ensure that Heat role works with multiple Keystone back-ends Currently when multiple Keystone Domain-specific Back-ends are configured the Heat role fails as it can't find the user 'stack_domain_admin'. This patch ensures that the User's domain is always specified and can therefore be found, ensuring that the Heat role execution succeeds. Change-Id: I480dc7774e5a9e015026288efe6ab326860c884f --- playbooks/roles/os_heat/tasks/heat_domain_setup.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/playbooks/roles/os_heat/tasks/heat_domain_setup.yml b/playbooks/roles/os_heat/tasks/heat_domain_setup.yml index 4c9b5eab1b..f0d1cecab4 100644 --- a/playbooks/roles/os_heat/tasks/heat_domain_setup.yml +++ b/playbooks/roles/os_heat/tasks/heat_domain_setup.yml @@ -91,6 +91,7 @@ add \ --user {{ heat_stack_domain_admin }} \ --domain {{ heat_stack_user_domain_name }} \ + --user-domain {{ heat_stack_user_domain_name }} \ admin tags: - heat-domain