get_firewall_rule
Retrieve detailed configuration and status information for a specific firewall rule associated with a Vultr load balancer to verify security settings and network access controls.
Instructions
Get details of a specific firewall rule.
Args: load_balancer_id: The load balancer ID or label (e.g., "web-lb", "api-load-balancer", or UUID) firewall_rule_id: The firewall rule ID
Returns: Firewall rule details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
firewall_rule_id | Yes | ||
load_balancer_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"firewall_rule_id": {
"title": "Firewall Rule Id",
"type": "string"
},
"load_balancer_id": {
"title": "Load Balancer Id",
"type": "string"
}
},
"required": [
"load_balancer_id",
"firewall_rule_id"
],
"type": "object"
}