Hi
I am having the following problem
If I try to run the following Sec_Rule it works ok, but if I re-run it it fails
`
ec2_security_groups_test:
- sg_name: test-grup
sg_description: test-group
vpc_id: “vpc-XXXXXX”
region: “{{ region }}”
sg_rules: - proto: 50
from_port: -1
to_port: -1
cidr_ip: 54.67.116.112/32 - proto: 50
from_port: -1
to_port: -1
cidr_ip: 54.183.92.78/32 - proto: 50
from_port: -1
to_port: -1
group_name: vpn-ap-northeast-1-production
`
I have tried a number of different options : -1/all… etc… but it always fails
if I use TCP/UDP it seems to work no problem, but I need to define that sort of PROTOCOL…
I am using ansible 1.7.1
Any workaround for this??
Thanks!