configure
Set up and manage OPNsense firewall connections by specifying host, API key, API secret, and SSL verification settings for streamlined configuration.
Instructions
Configure OPNsense connection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | Yes | API key | |
apiSecret | Yes | API secret | |
host | Yes | OPNsense hostname or IP | |
verifySsl | No | Verify SSL certificate |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"description": "API key",
"type": "string"
},
"apiSecret": {
"description": "API secret",
"type": "string"
},
"host": {
"description": "OPNsense hostname or IP",
"type": "string"
},
"verifySsl": {
"default": true,
"description": "Verify SSL certificate",
"type": "boolean"
}
},
"required": [
"host",
"apiKey",
"apiSecret"
],
"type": "object"
}