mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixed really annoying omission in the example without the task would complete without errors or warnings but delete all egress rules
This commit is contained in:
parent
1429507489
commit
7be83dc844
1 changed files with 2 additions and 1 deletions
|
@ -102,6 +102,7 @@ EXAMPLES = '''
|
||||||
- proto: tcp
|
- proto: tcp
|
||||||
from_port: 80
|
from_port: 80
|
||||||
to_port: 80
|
to_port: 80
|
||||||
|
cidr_ip: 0.0.0.0/0
|
||||||
group_name: example-other
|
group_name: example-other
|
||||||
# description to use if example-other needs to be created
|
# description to use if example-other needs to be created
|
||||||
group_desc: other example EC2 group
|
group_desc: other example EC2 group
|
||||||
|
@ -339,7 +340,7 @@ def main():
|
||||||
cidr_ip=ip)
|
cidr_ip=ip)
|
||||||
changed = True
|
changed = True
|
||||||
elif vpc_id and not module.check_mode:
|
elif vpc_id and not module.check_mode:
|
||||||
# when using a vpc, but no egress rules are specified,
|
# when using a vpc, but no egress rules are specified,
|
||||||
# we add in a default allow all out rule, which was the
|
# we add in a default allow all out rule, which was the
|
||||||
# default behavior before egress rules were added
|
# default behavior before egress rules were added
|
||||||
default_egress_rule = 'out--1-None-None-None-0.0.0.0/0'
|
default_egress_rule = 'out--1-None-None-None-0.0.0.0/0'
|
||||||
|
|
Loading…
Reference in a new issue