From cd9d14a774aaaaf62dd98ffc7bcbc9011288a540 Mon Sep 17 00:00:00 2001 From: Matt Van Dijk Date: Wed, 18 Nov 2015 09:46:12 -0500 Subject: [PATCH] Mongodb's "security.authorization" wrong type MongoDB validation rule "security.authorization" is the wrong type. It should be a "string" instead of a "boolean". This makes the user unable to manage their MongoDB instance security. Change-Id: Ia8a7f8128775934f3ee9d64b906bca208581acd1 Closes-bug: 1517498 --- trove/templates/mongodb/validation-rules.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trove/templates/mongodb/validation-rules.json b/trove/templates/mongodb/validation-rules.json index d22c4b45db..1672b69444 100644 --- a/trove/templates/mongodb/validation-rules.json +++ b/trove/templates/mongodb/validation-rules.json @@ -150,7 +150,7 @@ { "name": "security.authorization", "restart_required": true, - "type": "boolean" + "type": "string" }, { "name": "security.sasl.hostName", @@ -330,4 +330,4 @@ "type": "string" } ] -} \ No newline at end of file +}