Merge pull request #10021 from chrismeyersfsu/improvement-tagless

add tagless grouping for destinations without any tags
This commit is contained in:
Toshio Kuratomi 2015-01-16 10:01:01 -08:00
commit ef18468e83

View file

@ -465,6 +465,10 @@ class Ec2Inventory(object):
if self.nested_groups:
self.push_group(self.inventory, 'route53', name)
# Global Tag: instances without tags
if len(instance.tags) == 0:
self.push(self.inventory, 'tag_none', dest)
# Global Tag: tag all EC2 instances
self.push(self.inventory, 'ec2', dest)