Skip to content
Snippets Groups Projects
Commit fcfe1243 authored by Magnus Holm's avatar Magnus Holm
Browse files

contrib/terraform/terraform.py: fix for Ansible 2.6.2+, issue #3067

parent b1ef336f
No related branches found
No related tags found
No related merge requests found
......@@ -706,6 +706,10 @@ def query_list(hosts):
for name, attrs, hostgroups in hosts:
for group in set(hostgroups):
# Ansible 2.6.2 stopped supporting empty group names: https://github.com/ansible/ansible/pull/42584/commits/d4cd474b42ed23d8f8aabb2a7f84699673852eaf
# Empty group name defaults to "all" in Ansible < 2.6.2 so we alter empty group names to "all"
if not group: group = "all"
groups[group].setdefault('hosts', [])
groups[group]['hosts'].append(name)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment