Commit a429ff26 by Maykel Moya

ec2_group: Add documentation for rules_egress

parent b642e39e
...@@ -24,7 +24,11 @@ options: ...@@ -24,7 +24,11 @@ options:
required: false required: false
rules: rules:
description: description:
- List of firewall rules to enforce in this group (see example). - List of firewall inbound rules to enforce in this group (see example).
required: false
rules_egress:
description:
- List of firewall outbound rules to enforce in this group (see example).
required: false required: false
region: region:
description: description:
...@@ -113,6 +117,11 @@ EXAMPLES = ''' ...@@ -113,6 +117,11 @@ EXAMPLES = '''
- proto: all - proto: all
# the containing group name may be specified here # the containing group name may be specified here
group_name: example group_name: example
rules_egress:
- proto: tcp
from_port: 80
to_port: 80
group_name: example
''' '''
try: try:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment