From 48296eb8347d389964ed3a9ca39a5bdc28be33c5 Mon Sep 17 00:00:00 2001 From: Adam Zhang Date: Tue, 11 Aug 2015 18:54:27 -0400 Subject: [PATCH] Fix sample json file 1. Change 'False' to 'false'. According to json standard (http://json.org/), boolean literal should be all undercase. 2. Remove trailing comma from sample file. Change-Id: Ifc74c97e43ae1da4f85dc4da19f5ebfb149d7acc --- samples/deployments/existing-keystone-v3.json | 6 +++--- samples/deployments/existing-with-given-endpoint.json | 4 ++-- samples/deployments/existing.json | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/samples/deployments/existing-keystone-v3.json b/samples/deployments/existing-keystone-v3.json index ecdeaecbeb..27361e0f3d 100644 --- a/samples/deployments/existing-keystone-v3.json +++ b/samples/deployments/existing-keystone-v3.json @@ -9,8 +9,8 @@ "user_domain_name": "admin", "admin_domain_name": "default", "project_name": "admin", - "project_domain_name": "admin", + "project_domain_name": "admin" }, - "https_insecure": False, - "https_cacert": "", + "https_insecure": false, + "https_cacert": "" } diff --git a/samples/deployments/existing-with-given-endpoint.json b/samples/deployments/existing-with-given-endpoint.json index 1b058fa0d7..0f48156ebd 100644 --- a/samples/deployments/existing-with-given-endpoint.json +++ b/samples/deployments/existing-with-given-endpoint.json @@ -9,6 +9,6 @@ "password": "pa55word", "tenant_name": "demo" }, - "https_insecure": False, - "https_cacert": "", + "https_insecure": false, + "https_cacert": "" } diff --git a/samples/deployments/existing.json b/samples/deployments/existing.json index 532bf5afd0..5496688e38 100644 --- a/samples/deployments/existing.json +++ b/samples/deployments/existing.json @@ -8,6 +8,6 @@ "password": "myadminpass", "tenant_name": "demo" }, - "https_insecure": False, - "https_cacert": "", + "https_insecure": false, + "https_cacert": "" }