From f7caa9d79863a5e9d4b3a50b3677eb38d7354472 Mon Sep 17 00:00:00 2001 From: Scott Lowe Date: Tue, 7 Mar 2017 13:39:11 -0700 Subject: [PATCH] Update README.md for Ansible area Add information on new environment in Ansible area that shows using complex lists with Ansible's "with_items" construct Signed-off-by: Scott Lowe --- ansible/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ansible/README.md b/ansible/README.md index b050a72..23a0e9b 100644 --- a/ansible/README.md +++ b/ansible/README.md @@ -5,3 +5,5 @@ This folder contains tools, resources, and examples to help with learning how to ## Contents **ansible-aws**: This set of files shows how to use Ansible to both provision infrastructure on AWS as well as how to decommission (tear down) that same infrastructure. + +**src-dst-list**: This set of files shows how to use complex lists with Ansible's "with_items" construct. This allows you to specify, for example, both source and location for a "copy" task in a single block (when both source and destination vary from item to item).