You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Few places in documents explain how to grant privileges to users, but they do not explain revoking these privileges. This looks like a consistency gap.
For example, to take a previously granted privilege to a lua function away, specify the lua_call option without the previously allowed function name, or with an empty privileges array (further options may retain commented-out):
# grant privilegecredentials:
users:
alice:
privileges:
- permissions: [execute]lua_call: [my_func, my_func2]# take away a privilege:credentials:
users:
alice:
privileges:
- permissions: [execute]lua_call: [my_func]# take away all previously granted privileges:credentials:
users:
alice:
privileges: []# - permissions: [execute]# lua_call: [my_func, my_func2]
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Product: Tarantool
Audience/target: Users
Root document:
SME: @ totktonada
Details
lua_call
option without the previously allowed function name, or with an empty privileges array (further options may retain commented-out):The text was updated successfully, but these errors were encountered: