Remove bare variable from with_items

This is to avoid getting a deprecation warning

Change-Id: I7da86832d02b00c94d62c2188c2615c91fb7958b
This commit is contained in:
Ricardo Carrillo Cruz 2016-06-07 11:32:17 +00:00
parent b01a320feb
commit 973ecb7bac
1 changed files with 1 additions and 1 deletions

View File

@ -19,4 +19,4 @@
line='{{ server_ip }} {{ item }} {{ server_hostname }}'
insertafter='^127\.0\.0\.1'
state=present
with_items: groups['infra']
with_items: "{{ groups['infra'] }}"