-
-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Labels
Description
I encountered an issue with the example code below provided in the documentation for the firewall_create function.
Code from Documentation:
library(analogsea)
inbound <- list(list(protocol = "tcp", ports = "80",
sources = list(addresses = "18.0.0.0/8")))
outbound <- list(list(protocol = "tcp", ports = "80",
destinations = list(addresses = "0.0.0.0/0")))
res <- firewall_create("myfirewall", inbound, outbound)
res
Error received:
Error: missing name
Also, the message error is weird as the name is provided in the first argument.