diff --git a/python/ec2_require_tags_with_valid_values.py b/python/ec2_require_tags_with_valid_values.py index 0aebe6af..3f10d6b5 100644 --- a/python/ec2_require_tags_with_valid_values.py +++ b/python/ec2_require_tags_with_valid_values.py @@ -18,8 +18,8 @@ APPLICABLE_RESOURCES = ["AWS::EC2::Instance"] -# Iterate through required tags ensureing each required tag is present, -# and value is one of the given valid values +# Iterate through the required tags, ensuring each required tag is present +# and that the value is one of the given valid values def find_violation(current_tags, required_tags): violation = "" for rtag,rvalues in required_tags.iteritems():