I am trying to build Security Group Ingress/Egress...
# python
h
I am trying to build Security Group Ingress/Egress Args up to pass as a list into a Security group but keep getting an error that it's seeing an object and not a list
c
Instead of
ingress=[ingress_rules]
did you perhaps want
ingress=ingress_rules
since
ingess_rules
is already a list?