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
- 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.
The text was updated successfully, but these errors were encountered:
https://galaxy.ansible.com/ui/repo/published/community/cassandra/content/module/cassandra_role/
It has to be
keyspace_permissions
and notpermissions
.The text was updated successfully, but these errors were encountered: