Hi, Can you please provide an example. I am specifically interested in removing egress rules allowing everything automatically added by AWS when security groups are created. Thank you
---------------------------------------------------------------------------------------------------------------------------- Rahul Mehrotra Cloud & DevOps Engineer, Nokia USA email: [email protected] [image: View Rahul Mehrotra's profile on LinkedIn] <http://www.linkedin.com/in/rahulmehrotra1> On Fri, May 15, 2015 at 10:49 AM, Brent Langston <[email protected]> wrote: > 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 a topic in the > Google Groups "Ansible Project" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/ansible-project/5AkZ6-PlBRk/unsubscribe. > To unsubscribe from this group and all its topics, 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 > <https://groups.google.com/d/msgid/ansible-project/CABta7G0EiYqHrSUDVwT43aD7D68XJCTgHV8R--1vEvn1%2BjSsrA%40mail.gmail.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/CABddCmAQFj2py-MoEXrqHJg%2B2yLwdWG_SjN7CJLi%2BhDiaeoNMw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
