VNFRQTS - Fixing JSON example in CH 8 03/57903/1
authorBozawglanian, Hagop (hb755d) <hb755d@att.com>
Fri, 27 Jul 2018 19:34:59 +0000 (19:34 +0000)
committerBozawglanian, Hagop (hb755d) <hb755d@att.com>
Fri, 27 Jul 2018 19:35:58 +0000 (19:35 +0000)
Fixing the JSON example in 8.2 to a code-block.

Change-Id: Ib004e158279b1ff6fc4c1bd97055b8126ab499a3
Issue-ID: VNFRQTS-284
Signed-off-by: Bozawglanian, Hagop (hb755d) <hb755d@att.com>
docs/Chapter8/Ansible-JSON-Key-Value-Description.rst

index 4eb8131..4fd051c 100644 (file)
@@ -79,21 +79,23 @@ Table B1. Ansible JSON File key value description
 
 Ansible JSON file example:
 
-{
+.. code-block:: json
 
-      “Action”:”Configure”,
+  {
 
-      "PlaybookName": "<VNFCode>/<Version>/ansible/configure/site.yml",
+    “Action”:”Configure”,
 
-      "NodeList": ["test1.vnf\_b.onap.com", “test2.vnf\_b.onap.com”],
+    "PlaybookName": "<VNFCode>/<Version>/ansible/configure/site.yml",
 
-      "Timeout": 60,
+    "NodeList": ["test1.vnf\_b.onap.com", “test2.vnf\_b.onap.com”],
 
-      "EnvParameters": {"Retry": 3, "Wait": 5, “ConfigFile”:”config.txt”},
+    "Timeout": 60,
 
-      “FileParameters”:{“config.txt”:”db\_ip=10.1.1.1, sip\_timer=10000”}
+    "EnvParameters": {"Retry": 3, "Wait": 5, “ConfigFile”:”config.txt”},
 
-}
+    “FileParameters”:{“config.txt”:”db\_ip=10.1.1.1, sip\_timer=10000”}
+
+  }
 
 In the above example, the Ansible Server will: