The output of the digital ocean script was invalid for ID and droplet name groups. Hosts is now an array of strings rather than a string for these groups. (#16297)

pull/16312/head
Adam Thomas 8 years ago committed by Brian Coca
parent 624e7dae54
commit 27d0fe8d49

@ -373,8 +373,8 @@ or environment variables (DO_API_TOKEN)''')
self.inventory['all']['hosts'].append(dest)
self.inventory[droplet['id']] = dest
self.inventory[droplet['name']] = dest
self.inventory[droplet['id']] = [dest]
self.inventory[droplet['name']] = [dest]
# groups that are always present
for group in [

Loading…
Cancel
Save