-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Labels
bugThis issue/PR relates to a bug.This issue/PR relates to a bug.
Description
https://galaxy.ansible.com/ui/repo/published/community/cassandra/content/module/cassandra_role/
- name: Create a user with specific permissions for specific keyspaces
community.cassandra.cassandra_role:
name: rhys
password: 'secret'
update_password: true
state: present
login: yes
permissions:
mykeyspace:
- "ALL PERMISSIONS" # Same as GRANT ALL PERMISSIONS ON mykeyspace TO rhys;
mydummy:
- "SELECT"
- "EXECUTE" # Same as GRANT SELECT, EXECUTE ON mydummy TO rhys;
all_keyspaces:
- "SELECT" # Same as GRANT SELECT ON ALL KEYSPACES TO rhys;It has to be keyspace_permissions and not permissions.
Metadata
Metadata
Assignees
Labels
bugThis issue/PR relates to a bug.This issue/PR relates to a bug.