Table: mongodbatlas_custom_db_role - Query MongoDB Atlas Custom Database Roles using SQL
MongoDB Atlas Custom Database Roles represent a collection of permissions that you can assign to users. These roles can be used to grant specific privileges to the users on a specific database. The privileges determine the operations that the users can perform on the database.
Table Usage Guide
The mongodbatlas_custom_db_role
table provides insights into custom database roles within MongoDB Atlas. As a database administrator, explore specific details about these roles, including database name, role name, and associated actions. Utilize it to manage and control access to your databases, ensuring that users have the appropriate permissions for their roles.
Examples
Basic info
Explore which custom database roles have been assigned in your MongoDB Atlas and identify the associated actions. This can help in understanding user permissions and improve the security management of your database.
select role_name, actionsfrom mongodbatlas_custom_db_role;
select role_name, actionsfrom mongodbatlas_custom_db_role;
List roles which have the 'FIND' action defined
Explore which roles have the 'FIND' action defined to understand the distribution of permissions within your database, which can help in maintaining security and access controls.
select role_namefrom mongodbatlas_custom_db_role as r, jsonb_array_elements(t.actions) as awhere a ->> 'action' = 'FIND';
select role_namefrom mongodbatlas_custom_db_role as r, json_each(r.actions) as awhere json_extract(a.value, '$.action') = 'FIND';
List roles which have at least one inherited role
Discover which roles in your MongoDB Atlas database have inherited roles, allowing you to better understand role hierarchies and permissions in your database system. This can be particularly useful in larger systems where role management may become complex.
select role_namefrom mongodbatlas_custom_db_rolewhere jsonb_array_length(inherited_roles) > 0;
select role_namefrom mongodbatlas_custom_db_rolewhere json_array_length(inherited_roles) > 0;
Schema for mongodbatlas_custom_db_role
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
actions | jsonb | Each object in the actions array represents an individual privilege action granted by the role. | |
inherited_roles | jsonb | Each object in the inherited_roles array represents a key-value pair indicating the inherited role and the database on which the role is granted. | |
organization_id | text | =, !=, ~~, ~~*, !~~, !~~* | Unique identifier for the organization. |
project_id | text | = | The unique identifier of the project for this role. |
role_name | text | = | The name of the role. |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
title | text | Title of the resource. |
Export
This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.
You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh
script:
/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- mongodbatlas
You can pass the configuration to the command with the --config
argument:
steampipe_export_mongodbatlas --config '<your_config>' mongodbatlas_custom_db_role