From a429ff26dc8a9c9abc663eaeb5810b5e6eab5bec Mon Sep 17 00:00:00 2001 From: Maykel Moya Date: Thu, 20 Mar 2014 17:23:53 +0100 Subject: [PATCH] ec2_group: Add documentation for rules_egress --- library/cloud/ec2_group | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/library/cloud/ec2_group b/library/cloud/ec2_group index cf290c34746..e25185c5f1c 100644 --- a/library/cloud/ec2_group +++ b/library/cloud/ec2_group @@ -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: @@ -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: