From bb12121225676c9dba2ae9fcd2c2e3cac863815d Mon Sep 17 00:00:00 2001 From: Abhijit Menon-Sen Date: Mon, 27 Jul 2015 11:08:39 +0530 Subject: [PATCH] Fix incorrect example of vars_prompt --- docsite/rst/playbooks_prompts.rst | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docsite/rst/playbooks_prompts.rst b/docsite/rst/playbooks_prompts.rst index 29fc218fe86..a18ed1ae726 100644 --- a/docsite/rst/playbooks_prompts.rst +++ b/docsite/rst/playbooks_prompts.rst @@ -20,9 +20,12 @@ Here is a most basic example:: from: "camelot" vars_prompt: - name: "what is your name?" - quest: "what is your quest?" - favcolor: "what is your favorite color?" + - name: "name" + prompt: "what is your name?" + - name: "quest" + prompt: "what is your quest?" + - name: "favcolor" + prompt: "what is your favorite color?" If you have a variable that changes infrequently, it might make sense to provide a default value that can be overridden. This can be accomplished using