-
Notifications
You must be signed in to change notification settings - Fork 0
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
jwt change #69
jwt change #69
Conversation
export UAA_JWKS=<%= p('opensearch-dashboards-cf-auth-proxy.uaa.jwks') %> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does the p()
call here quote the property, too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's the raw value. We could examine the contents of this file in the deployed VMs to be sure
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tested it by putting a credhub value similar in dev
(dev wouldn't take ''' just stored ')
It gets rid of the ' it seems like but once i put it in the vm it works fine. so just need it to quote it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
credhub will store the quotes if you work around bash eating them:
credhub set ... -v "'"'{"keys": [...]}'}'"'"
(but this solution is good, too)
Changes proposed in this pull request:
Security considerations
None