iac_apply_deployment
Execute a deployment plan on OPNSense MCP Server to manage firewall configurations, VLAN setups, or network interfaces, with optional auto-approval to skip confirmations.
Instructions
Apply a deployment plan
Input Schema
Name | Required | Description | Default |
---|---|---|---|
autoApprove | No | Skip confirmation | |
planId | Yes | Plan ID from plan_deployment |
Input Schema (JSON Schema)
{
"properties": {
"autoApprove": {
"default": false,
"description": "Skip confirmation",
"type": "boolean"
},
"planId": {
"description": "Plan ID from plan_deployment",
"type": "string"
}
},
"required": [
"planId"
],
"type": "object"
}