-
Notifications
You must be signed in to change notification settings - Fork 87
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
openstack: Rename SSL options to TLS #1994
base: master
Are you sure you want to change the base?
Conversation
SSL is really ancient term, we should use the more common and modern TLS acronym instead.
ca_certs: 'SSL CA Certificates File' | ||
certfile: 'Server X.509 Certificate (Public) File' | ||
keyfile: 'Server X.509 Key (Private) File' | ||
insecure: 'Skip Certificate Validation (self-signed/insecure) (for instance, self-signed)' |
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.
self-signed is now twice in the text
ca_certs: 'SSL CA Certificates File' | ||
certfile: 'Server X.509 Certificate (Public) File' | ||
keyfile: 'Server X.509 Key (Private) File' | ||
insecure: 'Skip Certificate Validation (self-signed/insecure) (for instance, self-signed)' |
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.
same here
ca_certs: 'SSL CA Certificates File' | ||
certfile: 'Server X.509 Certificate (Public) File' | ||
keyfile: 'Server X.509 Key (Private) File' | ||
insecure: 'Skip Certificate Validation (self-signed/insecure) (for instance, self-signed)' |
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.
same here (I stop here todo that comment. seems to be in all places...)
certfile: 'Server X.509 Certificate (Public) File' | ||
keyfile: 'Server X.509 Key (Private) File' | ||
insecure: 'Skip Certificate Validation (self-signed/insecure) (for instance, self-signed)' | ||
cert_required: 'Certificate Authority (CA) Bundle File Required' |
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.
Do you know what this option is actually good for? IIRC it was initially intendent for being able to verify client certificates. But we never set any option that does that, right?
SSL is really ancient term, we should use the more common
and modern TLS acronym instead.