rs-drppy-client-verify-ssl¶
SSL/TLS Certificate Verification for DRP Python Client
DRP Python Client SSL Verification Configuration¶
This parameter controls whether the DRP Python client (drppy_client) should verify SSL/TLS certificates when connecting to the DRP endpoint.
Security Considerations¶
- Production: Should be set to
truefor security - Development/Lab: Can be set tofalsefor self-signed certificates - Default:true(verify certificates)
Requirements¶
- Must be a boolean value (true/false, yes/no, 1/0) - Changes take effect on next script execution - When disabled, SSL warnings will be suppressed
Usage¶
Enable SSL verification (recommended for production):
yaml rs-drppy-client-verify-ssl: true
Disable SSL verification (for development with self-signed certs):
yaml rs-drppy-client-verify-ssl: false
The parameter is used in Python scripts like this:
python verify_ssl_raw = '{{ .ParamExpand "rs-drppy-client-verify-ssl" }}' verify_ssl = parse_bool_flag(verify_ssl_raw, param_name="rs-drppy-client-verify-ssl")
config = drppy_client.Configuration() config.verify_ssl = verify_ssl
Accepted Values¶
True values: true, yes, on, 1 (case-insensitive) False values: false, no, off, 0, "" (case-insensitive)
Objects that Reference rs-drppy-client-verify-ssl¶
- templates prelude.py.tmpl in Community Core as part of Contents (used)
Objects used by rs-drppy-client-verify-ssl¶
Not used in current content packs