Skip to content
This repository has been archived by the owner on Jul 7, 2021. It is now read-only.

Commit

Permalink
Changed class name
Browse files Browse the repository at this point in the history
  • Loading branch information
phobologic committed Nov 20, 2016
1 parent 73c82be commit 45bb4b1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions stacker_blueprints/security_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}


class SecurityGroupRules(Blueprint):
class Rules(Blueprint):
"""Used to add Ingress/Egress rules to existing security groups.
This blueprint uses two variables:
Expand All @@ -23,7 +23,7 @@ class SecurityGroupRules(Blueprint):
An example:
name: mySecurityRules
class_path: stacker_blueprints.security_rules.SecurityGroupRules
class_path: stacker_blueprints.security_rules.Rules
variables:
IngressRules:
All80ToWebserverGroup:
Expand All @@ -41,7 +41,8 @@ class SecurityGroupRules(Blueprint):
"name of the rule to create, and the value is "
"a dictionary of keys/values based on the "
"attributes of the "
"troposphere.ec2.SecurityGroupIngress class.",
":class:`troposphere.ec2.SecurityGroupIngress` "
"class.",
"default": {},
},
"EgressRules": {
Expand All @@ -50,7 +51,8 @@ class SecurityGroupRules(Blueprint):
"name of the rule to create, and the value is "
"a dictionary of keys/values based on the "
"attributes of the "
"troposphere.ec2.SecurityGroupEgress class.",
":class:`troposphere.ec2.SecurityGroupEgress` "
"class.",
"default": {},
}
}
Expand Down

0 comments on commit 45bb4b1

Please sign in to comment.