summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorColleen Murphy <colleen@gazlene.net>2018-01-17 23:46:56 +0100
committerColleen Murphy <colleen.murphy@suse.de>2018-01-23 10:09:45 +0100
commitd59aaaa25c5ccd505aafbb1857807f6b8816771d (patch)
tree025b7cc5957aea0e737b0a04e0fd7c32f9e0ba1c /releasenotes
parente410b2985cedd9bad156079269620093bcf1eae3 (diff)
downloadpython-keystoneclient-d59aaaa25c5ccd505aafbb1857807f6b8816771d.tar.gz
Add CRUD support for application credentials
Add support for creating, reading, and deleting application credentials. Application credentials do not support updating. Keystoneclient does not handle authentication with application credentials. This is done in keystoneauth. Additional work will be needed in python-openstackclient to support both CRUD and auth for application credentials. bp application credentials Change-Id: I21214238deac2c45f2f2d666287c2ae106955ab1
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/bp-application-credentials-27728ded876d7d5a.yaml8
1 files changed, 8 insertions, 0 deletions
diff --git a/releasenotes/notes/bp-application-credentials-27728ded876d7d5a.yaml b/releasenotes/notes/bp-application-credentials-27728ded876d7d5a.yaml
new file mode 100644
index 0000000..c67357c
--- /dev/null
+++ b/releasenotes/notes/bp-application-credentials-27728ded876d7d5a.yaml
@@ -0,0 +1,8 @@
+---
+features:
+ - |
+ Adds support for creating, reading, and deleting application credentials.
+ With application credentials, a user can grant their applications limited
+ access to their cloud resources. Applications can use keystoneauth with
+ the `v3applicationcredential` auth plugin to authenticate with keystone
+ without needing the user's password.