{
"rules": [
{
"comment": "allow https - corp internet",
"policy": "allow",
"protocol": "tcp",
"srcPort": "Any",
"srcCidr": "10.0.0.0/8",
"destPort": "443",
"destCidr": "Any",
"syslogEnabled": false
},
{
"comment": "allow ssh - corp internet",
"policy": "allow",
"protocol": "tcp",
"srcPort": "Any",
"srcCidr": "10.0.0.0/8",
"destPort": "22",
"destCidr": "Any",
"syslogEnabled": true
}
]
} this is what I have tried in the body, I am thinking the value in my params field is not correct, but not sure on what other format it should be in. You might be onto something with the "Update firewall rule" language instead of "Add", but I tried adding additional destination ports and/or source CIDR in a rule, keeping the same rule order as retrieved in a GET, but the modified rules do not reflect the changes on another GET.
... View more