remove the rule from the list. rules: []
-------- Brent -------- On Fri, May 15, 2015 at 1:32 PM, Rahul Mehrotra <[email protected]> wrote: > > I have an Ansible script to create EC2 security group. It looks like this > > - name: Create HTTP Security Group > local_action: > module: ec2_group > region: "{{ region }}" > vpc_id: "{{ vpc }}" > name: sg_http > description: Security group for HTTP access > rules: > - proto: tcp > from_port: 80 > to_port: 80 > cidr_ip: 0.0.0.0/0 > register: sg_http > > I would like to write a task which deletes the rule but not security > group. I tried using the state as present, but it doesn't work > > - name: Delete HTTP Rule > local_action: > module: ec2_group > region: "{{ region }}" > vpc_id: "{{ vpc }}" > name: sg_http > description: Security group for HTTP access > rules: > - proto: tcp > from_port: 80 > to_port: 80 > cidr_ip: 0.0.0.0/0 > state: absent > register: sg_http > > What would be the better way to do this. Regards > > -- > You received this message because you are subscribed to the Google Groups > "Ansible Project" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/ansible-project/4f8fbfa1-1f22-44a2-9c4e-bfdaeff2d2e5%40googlegroups.com > <https://groups.google.com/d/msgid/ansible-project/4f8fbfa1-1f22-44a2-9c4e-bfdaeff2d2e5%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/CABta7G0EiYqHrSUDVwT43aD7D68XJCTgHV8R--1vEvn1%2BjSsrA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
