From 9ea34500845970d626868f13bc3f850f1b05e85e Mon Sep 17 00:00:00 2001 From: Sam Morrison Date: Thu, 10 Mar 2022 17:31:51 +1100 Subject: [PATCH] Include /v2 in public routes for keystone auth Change-Id: I01cd9689fdf5730dfee08aaacbea8c107bf625a3 --- etc/cloudkitty/api_paste.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/cloudkitty/api_paste.ini b/etc/cloudkitty/api_paste.ini index 8ae1e68f..c19a1f4e 100644 --- a/etc/cloudkitty/api_paste.ini +++ b/etc/cloudkitty/api_paste.ini @@ -8,7 +8,7 @@ pipeline = cors healthcheck http_proxy_to_wsgi request_id authtoken ck_api paste.app_factory = cloudkitty.api.app:app_factory [filter:authtoken] -acl_public_routes = /, /v1, /healthcheck +acl_public_routes = /, /v1, /v2, /healthcheck paste.filter_factory = cloudkitty.api.middleware:AuthTokenMiddleware.factory [filter:request_id]