Search code examples
neo4jneo4j-aura

Neo4j Aura: Can a user be defined and set a role such as 'publisher'


I have created an instance in Neo4j Aura and using the default user neo4j I am able to create a user using

CREATE USER test SET PLAINTEXT PASSWORD 'test'

This by default sets the user role to [PUBLIC]

I tried to alter the user role to editor using

GRANT ROLE editor TO test

I receive an error Neo.ClientError.Security.Forbidden: Permission has not been granted for ASSIGN ROLE

Is this a limitation of the Aura (free) and Aura Professional edition?

Thanks


Solution

  • Role-Based Access Control (RBAC) is available only in Neo4j Aura Enterprise.

    Source link