Skip to content

Commit

Permalink
ec2_group: Add documentation for rules_egress
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoya committed Mar 20, 2014
1 parent b642e39 commit a429ff2
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion library/cloud/ec2_group
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ options:
required: false
rules:
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
region:
description:
Expand Down Expand Up @@ -113,6 +117,11 @@ EXAMPLES = '''
- proto: all
# the containing group name may be specified here
group_name: example
rules_egress:
- proto: tcp
from_port: 80
to_port: 80
group_name: example
'''

try:
Expand Down

0 comments on commit a429ff2

Please sign in to comment.