Hi there,
According to this example:
`
# Simple example of creating a new firewall rule
- local_action:
module: gce_net
name: privatenet
fwname: all-web-webproxy
allowed: tcp:80,8080
src_tags: ["web", "proxy"]
`
I should be able to create a network with 2 firewall rules in 1 step. In this example both rules relate to the tcp protocol. Is there a way to define rules for tcp as well as ucp in one line?
Currently I do a with_dict loop …
thx
Peter