我想创建集合。仅允许insert
和find
操作。
我在mongodb中阅读Privilege Actions
并且我应用了该方法,但所有操作都像remove
和update
我试过了
db.createRole({
role: "master",
privileges: [
{ resource: { db : "db_name",collection:"lock" }, actions: ["find","insert"] },
],
roles : []
})
db.grantPrivilegesToRole("master",[{resource : {db : "db_name",collection:"lock"},actions : ["find","insert"]}],{w : "majority"})
如何仅允许insert
和find
?