diff options
author | Zuul <zuul@review.openstack.org> | 2018-10-23 11:57:32 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2018-10-23 11:57:32 +0000 |
commit | a609e682c2d5c6509fb545d9e1c1e87841d56d0b (patch) | |
tree | aaf4f9f65e2adc593eeb4171578e2112c90d8516 | |
parent | 00d136418527bf4dca0aff34c3316743bad7714d (diff) | |
parent | 1af38387a24532c8c90bc3da5fef4fed7e5b76c9 (diff) | |
download | oslo-middleware-a609e682c2d5c6509fb545d9e1c1e87841d56d0b.tar.gz |
Merge "Document security considerations for detailed healthcheck"3.37.0
-rw-r--r-- | oslo_middleware/healthcheck/opts.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/oslo_middleware/healthcheck/opts.py b/oslo_middleware/healthcheck/opts.py index ff39e98..5e4dffe 100644 --- a/oslo_middleware/healthcheck/opts.py +++ b/oslo_middleware/healthcheck/opts.py @@ -20,7 +20,11 @@ HEALTHCHECK_OPTS = [ help='The path to respond to healtcheck requests on.'), cfg.BoolOpt('detailed', default=False, - help='Show more detailed information as part of the response'), + help='Show more detailed information as part of the response. ' + 'Security note: Enabling this option may expose ' + 'sensitive details about the service being monitored. ' + 'Be sure to verify that it will not violate your ' + 'security policies.'), cfg.ListOpt('backends', default=[], help='Additional backends that can perform health checks and ' |