Add
Add Rules to a Firewall
/v2/firewalls/{firewall_id}/rules
To add additional access rules to a firewall, send a POST request to
/v2/firewalls/$FIREWALL_ID/rules
. The body of the request may include an
inbound_rules and/or outbound_rules attribute containing an array of rules to
be added.
No response body will be sent back, but the response code will indicate success. Specifically, the response code will be a 204, which means that the action was successful with no returned body data.
Path Parameters
firewall_id: string
Body Parameters
Add Rules to a Firewall
curl https://api.digitalocean.com/v2/firewalls/$FIREWALL_ID/rules \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $DIGITALOCEAN_ACCESS_TOKEN"