diff --git a/moto/ec2/models.py b/moto/ec2/models.py index e65d7fd44..f90ceae9f 100755 --- a/moto/ec2/models.py +++ b/moto/ec2/models.py @@ -846,8 +846,7 @@ class TagBackend(object): resource_id_filters.append(re.compile(simple_aws_filter_to_re(value))) if tag_filter == 'resource-type': for value in filters[tag_filter]: - if value in self.VALID_TAG_RESOURCE_FILTER_TYPES: - resource_type_filters.append(value) + resource_type_filters.append(value) if tag_filter == 'value': for value in filters[tag_filter]: value_filters.append(re.compile(simple_aws_filter_to_re(value))) diff --git a/setup.py b/setup.py index e079dbac0..928f28c75 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ extras_require = { setup( name='moto', - version='0.4.26', + version='0.4.27', description='A library that allows your python tests to easily' ' mock out the boto library', author='Steve Pulec',