From a49d1b7b91e4918d9d68dada5a41fdca21ad599c Mon Sep 17 00:00:00 2001 From: Petr Ruzicka Date: Tue, 21 Aug 2018 18:03:46 +0200 Subject: [PATCH] Replacing old "with_items:" by "loop:" (#44303) Replacing old "with_items:" by "loop:" +label: docsite_pr --- lib/ansible/modules/cloud/azure/azure_rm_deployment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/azure/azure_rm_deployment.py b/lib/ansible/modules/cloud/azure/azure_rm_deployment.py index 3428bf041a8..43f09f0617f 100644 --- a/lib/ansible/modules/cloud/azure/azure_rm_deployment.py +++ b/lib/ansible/modules/cloud/azure/azure_rm_deployment.py @@ -153,7 +153,7 @@ EXAMPLES = ''' add_host: hostname: "{{ item['ips'][0].public_ip }}" groupname: azure_vms - with_items: "{{ azure.deployment.instances }}" + loop: "{{ azure.deployment.instances }}" - hosts: azure_vms user: devopscle