1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Add a new inventory group so you can see instances in a particular VPC

This commit is contained in:
Dan Jenkins 2014-03-25 09:54:04 +00:00
parent ade083a2e3
commit d7b36dd9e7

View file

@ -433,6 +433,10 @@ class Ec2Inventory(object):
if self.nested_groups:
self.push_group(self.inventory, 'keys', key_name)
# Inventory: Group by VPC
if instance.vpc_id:
self.push(self.inventory, self.to_safe('vpc_id_' + instance.vpc_id), dest)
# Inventory: Group by security group
try:
for group in instance.groups: