diff --git a/playbooks/roles/bifrost-ironic-install/templates/ironic.conf.j2 b/playbooks/roles/bifrost-ironic-install/templates/ironic.conf.j2 index 147229c45..ed614e02c 100644 --- a/playbooks/roles/bifrost-ironic-install/templates/ironic.conf.j2 +++ b/playbooks/roles/bifrost-ironic-install/templates/ironic.conf.j2 @@ -72,6 +72,15 @@ use_web_server_for_images = true [inspector] enabled = true {% endif %} +{% if enable_keystone is defined and enable_keystone | bool == true %} +auth_plugin = password +auth_url = {{ ironic.service_catalog.auth_url }} +username = {{ ironic.service_catalog.username }} +password = {{ ironic.service_catalog.password }} +user_domain_id = default +project_name = {{ ironic.service_catalog.project_name }} +project_domain_id = default +{% endif %} {% if enable_keystone is defined and enable_keystone | bool == true %} [keystone]