Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cinder.conf defaults #257

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Make keystone check the service tokens
When Cinder receives a service token in the header KeyStone middleware
checks that the token is valid, but it doesn't automatically check that
the role of the token is actually that of a service, for that it needs
to be explicitly told so.

This patch instructs KeyStone middleware to check the role of the
service token when it is present in a request using the
`service_token_roles_required` configuration option.
Akrog committed Sep 1, 2023
commit 03d26475989961f7a4ae5d28d01002a83c8bb3cf
2 changes: 1 addition & 1 deletion templates/cinder/config/00-config.conf
Original file line number Diff line number Diff line change
@@ -63,7 +63,7 @@ user_domain_name = Default
project_name = service
username = {{ .ServiceUser }}
password = {{ .ServicePassword }}
#service_token_roles_required = true
service_token_roles_required = true
interface = internal

[nova]