Cloudanix Achieves AWS Security Competency Status for Its CNAPP+ Platform and Just-in-Time Access Engine

Cloudanix – Your Partner in Cloud Security Excellence

Query-Level Audit and PII Masking for RDS Databases Behind ECS Workloads

  • Sunday, Sep 20, 2026

Customer Snapshot

AttributeDetails
IndustrySaaS Platform
Cloud EnvironmentAWS (multiple accounts)
WorkloadsECS services fronting the application tier
DatabasesAmazon RDS — PostgreSQL and MySQL
Sensitive DataCustomer PII in production tables
Current StateNo query-level audit, no masking, shared/broad DB access
Focus AreaData-tier governance for RDS

The Situation: The Application Tier Is Watched, the Data Tier Isn’t

This team had invested in posture and had good coverage of the application and infrastructure layers. ECS services, task roles, networking — all under management. But behind those ECS services sat RDS databases (PostgreSQL and MySQL) holding customer PII, and the data tier had none of the same rigor.

The uncomfortable questions were the ones nobody could answer. Who queried the customer table last week, and what did they pull? Can a support engineer run SELECT * and export every record? If an auditor asked for query-level access logs on the PII tables, was there anything to hand over? The honest answers were “we don’t know,” “yes,” and “no.” The application tier was governed. The data — the thing that actually matters most — was effectively open behind it.

The Core Tension

Access control gets someone into the database; it does nothing about what they can see and do once inside. Native database roles and grants are too coarse to mask a column, block a dangerous query, or record who ran what at the statement level. So even a well-run access model leaves a gap: a legitimately-connected user can read every customer’s PII in plaintext and export it, with no record and no restraint. Closing that gap requires a control layer at the query itself — one that governs and records every statement without shipping sensitive data out of the team’s own cloud.

Where the Gaps Were

No Record of Who Queried What

Native database logs, where they exist at all, typically show that a connection happened under a shared or service account — not which human ran which statement, against which tables, returning how many rows. When the question is “who accessed customer PII and what did they retrieve,” connection-level logging is not an answer. The forensic detail — the statement, the human, the tables, the volume — simply is not captured.

Everyone Sees Raw PII

Without masking, any user who can read a table sees every column in plaintext. A support engineer investigating one customer’s issue can see every customer’s email, phone, and identifiers. This is both a privacy exposure and an audit liability: there is no role-based distinction between “needs to see this customer’s status” and “can read all PII for everyone.”

No Guardrail Against Destructive or Bulk Operations

A mistyped DELETE without a WHERE, a DROP during what was meant to be a read-only session, or a SELECT * that exfiltrates a million rows — native access has no safety net. The query reaches the database and executes. Prevention, where the dangerous statement is stopped before it runs, does not exist in the default setup.

The Data-Sovereignty Trap

The obvious fix — a legacy database activity monitoring product — often carries its own problem: routing sensitive query traffic through the vendor’s infrastructure. For a team that cares about where its customer data lives, sending every query and result through a third party is a non-starter. The team needed monitoring without surrendering data sovereignty.

How Cloudanix Addresses This Situation

A Secure Query Proxy in Your Own Cloud

Cloudanix Database Activity Monitoring deploys as a secure query proxy that runs inside the customer’s own environment — on their own ECS. Every SQL statement to the RDS databases routes through the proxy, and every audit record lands in the customer’s own storage. The database stays in its private subnet; the sensitive data never leaves the team’s AWS account to be secured. This is the answer to the data-sovereignty trap: full query-level control and monitoring, with nothing shipped to a vendor.

Cloudanix DAM — Query proxy and database activity view

Query-Level Audit: Every Statement, Every Human

DAM logs every query with full context: the statement itself, the identity of the real human who ran it, the tables and columns touched, rows returned, and timing. Even where the database sees a shared connection, the query is attributed to the actual person. The previously unanswerable question — “who queried the PII tables and what did they pull?” — becomes a search against the audit trail in the team’s own storage.

Dynamic PII Masking, Role-Based

DAM masks sensitive data post-execution based on who is asking, with multiple strategies (full mask, show last four, mask email/phone, hash, redact, tokenize). A support engineer sees a customer’s status and a masked identifier; a role with a genuine need sees more. Masking happens at the query layer — no schema changes, no application changes. The same query returns different visibility depending on the requester’s role.

Cloudanix DAM — Role-based masking in the database client

Guardrails: Blocking Dangerous Queries Before Execution

DAM inspects statements before they run and enforces guardrails: block destructive operations (DELETE/DROP/TRUNCATE) per policy, require a WHERE clause, restrict access to specific tables or columns, and cap row counts to prevent mass export. A blocked query returns a clear message explaining why. The safety net exists at the query layer — the statement that would have deleted production data or exported a million rows never reaches RDS.

Works With the Tools Engineers Already Use

Because DAM presents a standard database endpoint, engineers keep using DBeaver, DataGrip, TablePlus, pgAdmin, or psql. There is no browser-based SQL console to adopt and no workflow to relearn. The only change is that access is governed, masked, and recorded — invisibly, from the engineer’s point of view.

The Foundation: Keyless, Identity-Stamped Access

DAM builds on Database JIT: access is requested, approved, and time-bound, with short-lived credentials minted per session instead of shared passwords living on laptops. That is what makes query attribution to a real human possible in the first place — access control and data control working as one lifecycle rather than two bolted-together products.

See Cloudanix DAM in Action

In this 2-minute interactive walkthrough, see how Cloudanix DAM inspects, masks, and records queries — with your data never leaving your cloud.

Platform Impact

DimensionBeforeAfter (DAM on RDS)
Query attributionConnection under shared accountEvery statement stamped to the real human
PII visibilityRaw plaintext for anyone who can readRole-based masking at the query layer
Destructive/bulk queriesExecute with no safety netBlocked before execution per policy
Audit evidenceLittle to noneFull query-level trail in your own storage
Data sovereigntyAt risk with vendor-routed toolsProxy in your cloud; data never leaves
Engineer workflowUnchanged — same DB clients

Access Without Data Control Is Half a Solution

Getting someone safely into a database means very little if, once there, they can read and export every customer record unmasked and unlogged. The application tier being well-governed makes the data-tier gap more glaring, not less — it is the one layer holding the data that regulations, auditors, and customers actually care about, and it is the one left open.

Closing it does not mean surrendering your data to a monitoring vendor. A query proxy in your own cloud gives you the whole picture — who ran what, masked by role, with dangerous statements stopped before they execute — while your sensitive data stays exactly where it belongs. For an ECS-and-RDS team, that is how the data tier finally gets the same rigor the rest of the stack already has.

Key Outcomes

  • Query-Level Audit: Every statement attributed to the real human, in your own storage.
  • Role-Based PII Masking: Sensitive columns masked by who is asking — no schema changes.
  • Query Guardrails: Destructive and bulk operations blocked before execution.
  • Data Sovereignty: Proxy runs in your cloud; data never leaves your account.
  • Native Tooling: DBeaver, DataGrip, TablePlus, pgAdmin, psql — unchanged.
  • Access + Data as One: Built on keyless, identity-stamped Database JIT.

Sensitive Data in RDS Behind Your ECS Services?

If your ECS workloads front RDS databases full of customer PII — and you can’t prove who queried what or stop a full-table export — Cloudanix DAM adds query-level audit, role-based masking, and prevention, with your data never leaving your cloud.

Book a Free Assessment to see DAM protecting your RDS databases in under 30 minutes.

Related Resources

What Our Users Are Saying

Customer Reviews

Cloudanix is trusted by security leaders worldwide to deliver proactive, reliable, and cutting-edge cloud security.

One day, I changed the password of a root account, and my CTO called me within less than a minute to confirm if I did so. I was not expecting a reaction this quick. He told me Cloudanix alerted him of this password change and that he wanted to confirm as it was a critical security notification. I couldn't believe it!

Ritesh Agarwal
Ritesh Agarwal
CEO, Airgap Networks

Compliance is one way of staying secure, but what I want is the ability to go deeper and attain 'true security.' Cloudanix provides us the capability to do so.

Vishal Madan
Vishal Madan
Head of Engineering, iMocha

Cloudanix is building for the future of the cloud, which makes the product all the more desirable.

Ritesh Agarwal
Ritesh Agarwal
CEO, Airgap Networks

Cloudanix gave us the visibility we were missing. Being able to move from permanent access to a robust Just-In-Time (JIT) workflow has fundamentally changed our security posture without slowing down our engineering velocity.

Pavan Kumar Lekkala
Pavan Kumar Lekkala
SRE Lead, HugoHub

We are excited to leverage Cloudanix's comprehensive multi-cloud DevSecOps solution to secure our production workloads on AWS. Cloudanix has demonstrated that it can solve many challenges that DevSecOps teams face while continually adding new features such as SOC2 compliance and drift detection.

Satish Mohan
Satish Mohan
Co-founder & CTO, Airgap Networks

Managing third-party partner access was once a major concern for our security posture. With Cloudanix JIT Cloud, we've effectively achieved zero third-party risk. We can now grant access confidently, knowing that it is temporary, audited, and automatically revoked, resulting in a 100% reduction in our privileged access exposure.

Okesh Badhiye
Okesh Badhiye
Head of Technical Engineering, Finfinity

The snooze feature and responsible alerts have helped us save time and prioritize what to tackle first.

Satish Mohan
Satish Mohan
Co-founder & CTO, Airgap Networks

Implementing Cloudanix JIT internally allowed us to practice what we preach. By eliminating permanent access to our own clouds and databases, we've neutralized the risk of standing privileges, ensuring our own 'keys to the kingdom' are never left exposed.

Girish Manghnani
Girish Manghnani
Managing Partner, Tech Inspira

The problem with permissions is a lot of times, the gaps are left open due to oversights from inside the organization itself. With Cloudanix's CIEM, we get a complete view of user permissions and access. This enables us to update the permissions, reducing the attack surface.

Nilesh Pethani
Nilesh Pethani
Application Architect, iMocha

In the world of Fintech, trust is our currency. Cloudanix provided the frictionless visibility we needed to secure our EKS workloads across AWS, ensuring we stay audit-ready for SOC2 and GDPR without slowing down our engineering velocity.

Amol Naik
Amol Naik
Head of Security & Infrastructure, HugoHub

Cloudanix delivered value within 5 minutes of onboarding. Continuous monitoring, timely detection, and excellent documentation helped us attain a great cloud security posture.

Divyanshu Shukla
Senior DevSecOps, Meesho

Technology strategies and business strategies are in a state of constant change which includes centralization and decentralization of responsibilities. Regardless of strategic shift, we still have intellectual property to protect. Cloudanix are critical partners for us in our public cloud security posture across our three cloud providers.

Jerry Locke
Jerry Locke
Senior Director Global Solutions Engineering, Eversana

Cloudanix has been amazing. They opened up a common Slack channel with us — and it feels like we are talking to our own team and getting things done with Cloud security. The support team is always available, friendly, helpful, and ready to go out of their way.

Satish Mohan
Satish Mohan
CTO, Airgap Networks

Beyond just access management, Cloudanix CSPM has given us a unified view of our AWS environment. The real-time alerting and anomaly detection allow us to prevent any untoward activity before it happens, which is critical for a marketplace connecting 50+ financial institutions.

Okesh Badhiye
Okesh Badhiye
Head of Technical Engineering, Finfinity

For a Fintech company, data is our most valuable — and most sensitive — asset. Cloudanix DAM hasn't just improved our visibility; it has given us control. The ability to mask data and prevent unauthorized queries in real-time is a game-changer for our compliance and customer trust.

Jiten Gala
Jiten Gala
President Engineering and Product, Kapittx

Our clients, especially in the Middle East financial sector, demand absolute accountability. Cloudanix JIT Cloud has been a competitive differentiator for us, allowing us to provide secure, governed access to customer accounts that meet their strictest audit and compliance requirements.

Girish Manghnani
Girish Manghnani
Managing Partner, Tech Inspira

Cloudanix is always on my team's lips because of its exceptional support. Be it a small or big query, Cloudanix has gone above and beyond to resolve them. This one's a keeper for us.

Sujit Karpe
Sujit Karpe
CTO, iMocha

For a long-lasting partnership, great support goes a long way. Cloudanix has delivered exceptional support whenever required. Their edge is their team is always ready to go beyond to solve any issues that we have. This speaks volumes about the culture at Cloudanix.

Akash Maheshwari
Akash Maheshwari
Co-founder, MoveInSync

Beyond the technology, Cloudanix feels like an extension of our own team. Their willingness to stand up a dedicated Middle East tenant for us and provide exceptional support at a sensible price makes them a long-term partner for Hugosave.

Surya Tamada
Surya Tamada
CTO, HugoHub

The real-time notifications that Cloudanix provides are a real lifesaver. Their adaptive notifications ensure that my team stays productive and doesn't get interrupted all the time.

Digvijay Singh
Staff Security Engineer, Meesho

The whole point in technological evolution is to help improve the world we live in. We must protect that and to do so requires an effective and efficient security strategy. The Cloudanix team helped make our public cloud security posture management strategy a reality. The symbiotic relationship we have allows for a continuous feedback loop which is how business should operate.

Larry Wheat
Larry Wheat
Staff Solutions Engineer, Eversana

Ready to see your graph?

Connect a cloud account in under 30 minutes. See every finding rooted in identity, asset, and blast radius — with a fix path attached.

Book a Demo