Hi there,
It'd be helpful if this tool supports proxies and client certificates (mTLS). As I can see it should be added somewhere here:
|
def create_session(self): |
- Add support for proxies:
proxies = {
'http': '...',
'https': '...',
}
session.proxies.update(proxies)
- Add support for client certificates (mTLS):
cert = './xxx.pem'
privkey = '/./xxx.key'
session.cert = (cert, privkey)
Hi there,
It'd be helpful if this tool supports proxies and client certificates (mTLS). As I can see it should be added somewhere here:
netbox-sync/module/netbox/connection.py
Line 187 in a9f25a6