Add 'digital_ocean' as group (#21631)

This commit is contained in:
Simon Wydooghe 2018-02-10 03:18:03 +01:00 committed by Abhijeet Kasurde
parent 1d419c737d
commit c119f6e642

View file

@ -40,6 +40,7 @@ is to use the output of the --env option with export:
The following groups are generated from --list:
- ID (droplet ID)
- NAME (droplet NAME)
- digital_ocean
- image_ID
- image_NAME
- distro_NAME (distribution NAME from image)
@ -452,7 +453,8 @@ class DigitalOceanInventory(object):
self.inventory[droplet['name']] = [dest]
# groups that are always present
for group in ('region_' + droplet['region']['slug'],
for group in ('digital_ocean',
'region_' + droplet['region']['slug'],
'image_' + str(droplet['image']['id']),
'size_' + droplet['size']['slug'],
'distro_' + DigitalOceanInventory.to_safe(droplet['image']['distribution']),