-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds support for proxies and NetBox client certs #140
- Loading branch information
1 parent
71c97de
commit 99a10ac
Showing
4 changed files
with
88 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,6 +63,17 @@ host_fqdn = netbox.example.com | |
# web server certificate then this option needs to be changed | ||
#validate_tls_certs = true | ||
|
||
# Defines a proxy which will be used to connect to NetBox. | ||
# proxy setting needs to include the scheme. | ||
# proxy basic auth example: http://user:[email protected]:3128 | ||
#proxy = http://example.com:3128 | ||
|
||
# Specify a client certificate which can be used to authenticate to NetBox. | ||
#client_cert = client.pem | ||
|
||
# Specify the client certificate private key belonging to the client cert. | ||
#client_cert_key = client.key | ||
|
||
# Whether items which were created by this program but can't be found in any | ||
# source anymore will be deleted or not. | ||
#prune_enabled = false | ||
|
@@ -113,6 +124,10 @@ host_fqdn = vcenter.example.com | |
# TCP port to connect to | ||
#port = 443 | ||
|
||
# EXPERIMENTAL: Connect to a vCenter using a proxy (socks proxies are not supported) | ||
#proxy_host = 10.10.1.10 | ||
#proxy_port = 3128 | ||
|
||
# Enforces TLS certificate validation. If vCenter uses a valid TLS certificate then | ||
# this option should be set to 'true' to ensure a secure connection. | ||
#validate_tls_certs = false | ||
|