Salman
My feedback
13 results found
-
10 votes
An error occurred while saving the comment -
258 votes
An error occurred while saving the comment Salman commentedWe have introduce a capability to push cluster logs to a customer S3. This push happens every five minutes. This capability is not the same as streaming, but a step in that direction.
https://www.mongodb.com/docs/atlas/push-logs/ -
14 votes
An error occurred while saving the comment Salman commentedThanks, Shanjeef for your idea.
If there was a way to define a database role which forces application to pass an application-specific specific tenant ID in every query, could that meet your needs?
Example:
1 Create a database read-only role for the application database user. This role requires a mandatory query parameter (appSpecificTenantId) which must be supplied on every query. The value of appSpecificTenantId parameter will need to be provided by the application on each query.
db.createRole(
{
role: "appSpecificDBRole",
privileges: [{
resource: {
db: "mydb",
collection: "mycol" },
actions: [ "find"],
mandatory_query_parameters: [ "appSpecificTenantId" ] //<-- does not exist today
}],
},
{ w: "majority" , wtimeout: 5000 }
)Then, application issues a query such as the following where it always supply a value for "appSpecificTenantId" . Application may also add other filter parameters (cityName in this case)
2. db.users.find({ appSpecificTenantId: '1234', cityName: 'foo' })
-
15 votes
An error occurred while saving the comment Salman commentedThanks, Matt. We are looking into SCIM but don't have a timeline at the moment.
-
2 votes
An error occurred while saving the comment Salman commentedHi Martin, thanks for your suggestion. I was wondering what is the use case that requires this capability?
-
5 votes
An error occurred while saving the comment Salman commentedHi Fulton,
Thanks for your ideas and suggestions. There are various ways of addressing this issue, including
1) the last access date as you noted
2) use of short-lived credentials (https://www.mongodb.com/docs/atlas/security-add-mongodb-users/#optional-save-as-temporary-user) - possible today
3) use of LDAPS as the authentication mechanism - possible todayHave you considered (2) and (3)?
Salman
-
7 votes
An error occurred while saving the comment Salman commentedHi Kyle,
You can reach out to support for enabling this feature. However, enabling this feature effectively disables the Performance Advisor and Query Profiler, so that is a tradeoff you may need to consider.
Salman
-
5 votes
An error occurred while saving the comment Salman commentedMongoDB audit guarantees require that audit entry is written before a document is written to the database. The concern with writing audit entries to a remote endpoint such as Kafka is that network latency and availability can cause unpredictability in the completion of database operations. Therefore, we recommend shipping out audit logs to a remote endpoint such as Kafka or a SIEM using log forwarding tools.
-
24 votes
An error occurred while saving the comment Salman commentedThanks for the feature request. For folks looking to implement password policies for the SCRAM method, we recommend using Hashicorp. Vault provides comprehensive life cycle management for passwords, as well as certificates.
Vault has a secrets engine for MongoDB.
https://www.vaultproject.io/docs/secrets/databases/mongodb -
1 vote
An error occurred while saving the comment Salman commentedHi Ray, if you are running MongoDB database on-prem and looking for a security checklist, it can be found here:
https://docs.mongodb.com/manual/administration/security-checklist/Hope this helps.
-
8 votes
An error occurred while saving the comment Salman commentedHi Geoffrey,
Thank you for sharing the suggestion. Could you share here or in an email (product.security@mongodb.com) the scenario under which deleting a user is not feasible when a certificate is compromised?
Salman
-
1 voteSalman shared this idea ·
-
38 votesSalman shared this idea ·
Alejandro, thank you for your feedback. Pushing logs to Google Cloud Storage and Azure Blob Storage is on our roadmap. Let us directly reach out to you to understand the full scope of your requirements.