-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Support for ssl key/cert as base64 string #20
Conversation
49f04ef
to
6b6982d
Compare
@@ -276,6 +276,8 @@ These variables are the defaults of our roles, if you want to override the prope | |||
| web_admin_username | Username of the admin user in web application | admin | | |||
| enable_alerting | Enable the alerting mechanism on web project | false | | |||
| install_nginx | Install nginx | true | | |||
| nginx_ssl_cert_as_base64 | Nginx ssl certificate provided as base64 string | false | |
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 guess nginx_ssl_cert
and nginx_ssl_key
are not documented 😞
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 will document them in the other pr #21
Vagrantfile
Outdated
prometheus_url: "http://localhost", | ||
web_admin_password: "adminpassword", | ||
trento_server_name: "trento.local trento.local:8080" | ||
trento_server_name: "trento.local trento.local:8080", | ||
nginx_ssl_cert_as_base64: "false", |
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 need to put them with the default value?
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.
No, it was a reminder for me, but we can remove them
35675ef
to
8a4a53d
Compare
As the title suggest, this pr adds support for ssl key/certs as base64.
This is useful when we need to pass multiple line ssl certificates through cli, encoding as base64 ensure single line and preserve multiline content