diff --git a/playbooks/roles/admin/templates/docker/util/parse_skexport b/playbooks/roles/admin/templates/docker/util/parse_skexport index 0fc59e4f..3750899d 100644 --- a/playbooks/roles/admin/templates/docker/util/parse_skexport +++ b/playbooks/roles/admin/templates/docker/util/parse_skexport @@ -250,7 +250,7 @@ with open(infile, 'r') as lines: output_dict[key] = skexport_value if key == 'MONGO_INITDB_ROOT_PASSWORD': output_dict["MONGO_URI"] = f"mongodb://restheart:{skexport_value}@restheart-mongo:27017/?authSource=admin" - if "public_key" in key or "private_key" in key or "privatekey" in key: + if "public_key" in key or "private_key" in key or "privatekey" in key: if args.verbose: print(f'Key {key} is a signing token. Need to make sure its quoted') output_dict[key] = f'"{skexport_value}"'