From 8a7496af4285133e760431f8eeb3fffee6d0e07b Mon Sep 17 00:00:00 2001 From: Greg Back Date: Fri, 1 May 2015 16:45:56 -0500 Subject: [PATCH] Make "include" variable documentation consistent There is already a good example of a list variable ("ssh_keys") contained above this snippet, so reuse the content here. --- docsite/rst/playbooks_roles.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docsite/rst/playbooks_roles.rst b/docsite/rst/playbooks_roles.rst index 3ffabe835d3..ce6c04c5cad 100644 --- a/docsite/rst/playbooks_roles.rst +++ b/docsite/rst/playbooks_roles.rst @@ -86,10 +86,9 @@ which also supports structured variables:: - include: wordpress.yml vars: wp_user: timmy - some_list_variable: - - alpha - - beta - - gamma + ssh_keys: + - keys/one.txt + - keys/two.txt Playbooks can include other playbooks too, but that's mentioned in a later section.