Create a keyword for write AND read

Describe the feature

In order to have smaller permissions.yml file it would be great to have a keyword like "all" (or something else I do not really like "all") where all would grant read and write permissions.

So:

  - role_example:
      owner: sysadmin
      privileges:
          databases:
              read:
                  - db1
              write:
                  - db1
          schemas:
              read:
                  - db1.*
              write:
                  - db1.*
          tables:
              read:
                - db1.*.*
              write:
                - db1.*.*

would become:

  - role_example:
      owner: sysadmin
      privileges:
          databases:
              all:
                - db1

          schemas:
              all:
                - db1.*

          tables:
              all:
                - db1.*.*

Additional context

In my company we have lots of roles that needs write AND read rights, so the permissions file is huge.

Who will this benefit?

all roles with read AND write rights

Are you interested in contributing this feature?

yes