blob: d3a244884d09b6654fe27635072813c5cb497c92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# pyvyos device configuration.
# Copy this file to .env and fill in the values.
# Hostname or IP address of the VyOS device.
VYDEVICE_HOSTNAME=
# API key configured on the device with:
# set service https api keys id <name> key <secret>
VYDEVICE_APIKEY=
# HTTPS port of the VyOS API (default: 443).
VYDEVICE_PORT=443
# Protocol: "https" (recommended) or "http".
VYDEVICE_PROTOCOL=https
# Verify the TLS certificate of the device.
# Set to "false" ONLY in lab environments using self-signed certificates.
VYDEVICE_VERIFY_SSL=true
|