From ee8192e0e07fd954c820f87bb22f85835858f1b9 Mon Sep 17 00:00:00 2001 From: melissaml Date: Tue, 17 Apr 2018 05:43:33 +0800 Subject: [PATCH] Update auth_uri option to www_authenticate_uri Option auth_uri from group keystone_authtoken is deprecated[1]. Use option www_authenticate_uri from group keystone_authtoken. [1]https://review.openstack.org/#/c/508522/ Change-Id: I73383405a5a091e94dbea8577e368eea36e3e02d --- doc/source/charm-anatomy.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/charm-anatomy.rst b/doc/source/charm-anatomy.rst index 676a4943..8930b560 100644 --- a/doc/source/charm-anatomy.rst +++ b/doc/source/charm-anatomy.rst @@ -264,7 +264,7 @@ access those variables: .. code:: python [keystone_authtoken] - auth_uri = {{ identity_service.service_protocol }}://{{ identity_service.service_host }}:{{ identity_service.service_port }} + www_authenticate_uri = {{ identity_service.service_protocol }}://{{ identity_service.service_host }}:{{ identity_service.service_port }} auth_url = {{ identity_service.auth_protocol }}://{{ identity_service.auth_host }}:{{ identity_service.auth_port }} See the **auto\_accessors** list in `charm-interface-keystone `__