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

Cloudanix – Your Partner in Cloud Security Excellence

JIT DB for Multi-VPC Production Environments: Onboarding a New VPC in 2 Hours Without Affecting Existing Access

  • Friday, Aug 14, 2026

Customer Snapshot

AttributeDetails
IndustryTechnology / AI SaaS
Cloud EnvironmentAWS (4 accounts, multiple VPCs per account)
New VPC DetailsCreated 1 week prior, us-west-2, AI Production account
Existing JIT DB4 VPCs already onboarded across accounts
Database TypeRDS (IAM Authentication already enabled)
Setup MethodInfrastructure script from AWS CloudShell
Time to Operational~2 hours including verification
Impact on Existing VPCsZero (independent deployments)
Cloudanix ScopeDatabase JIT — new VPC addition to existing deployment

The Situation: A New Workload, A New VPC, Same Day Database JIT

When this AI SaaS company launched a new customer-facing AI workload, infrastructure spun up quickly: new VPC in us-west-2, new RDS instances, new EKS cluster. The production account already had Cloudanix Database JIT running across 4 VPCs. The question was simple: how quickly can the 5th VPC get the same database JIT access as the others?

The answer: 2 hours, with zero impact on existing deployments.

This wasn’t a greenfield installation — it was an addition to an existing JIT DB deployment. The team needed to confirm that:

  1. The new VPC’s JIT DB infrastructure was independent of existing VPCs (no cross-contamination).
  2. Existing VPC deployments continued functioning normally during and after setup.
  3. Developers could request access to databases in the new VPC using the same workflow they already knew.
  4. The end-to-end flow worked: request → approve → credentials → connect → query → revoke.

The Core Challenge

Adding Database JIT to a new VPC in an environment where 4 VPCs are already running JIT DB. The new deployment must be independent (no impact on existing VPCs), fast (the workload is live and developers need access today), and consistent (same developer experience as the other 4 VPCs).

The Onboarding Process: Step by Step

Prerequisites Verified

Before running the setup, the team confirmed:

  • VPC ID identified for the new us-west-2 VPC.
  • RDS instances in the VPC with IAM database authentication already enabled (the team had adopted this as standard practice after initial onboarding months earlier).
  • Required RDS users already existed on the database instances.
  • Subnet IDs for private subnets (where the ECS service would deploy) and public subnets (for NAT-accessible networking).
  • Security groups / CIDR correctly configured to allow traffic from the ECS service to RDS instances.

Infrastructure Setup

The team ran the existing setup script from AWS CloudShell in the production account:

  1. Provided parameters: VPC ID, private subnet IDs, public subnet IDs, RDS endpoint details.

  2. Script created:

    • ECS service (the DB proxy component) in a private subnet.
    • IAM policy with permissions scoped to the new VPC’s RDS instances.
    • CloudWatch log group for operational monitoring.
    • Secrets Manager configuration for Cloudanix control plane communication.
    • Security group rules allowing ECS → RDS traffic within the VPC.
  3. Environment-specific adjustments:

    • Different IAM policy names (to avoid conflicts with policies in other VPCs).
    • Different CloudWatch log group names (per-VPC naming convention).
    • Updated Secret Manager paths for the new deployment.
    • Fixed hardcoded values in the script that referenced the original VPC deployment.
  4. Cleanup and retry: Initial run hit a CloudWatch log group naming conflict (leftover from a previous test). Cleaned up the log group, reran the script successfully.

Validation

After infrastructure setup, the team validated end-to-end:

  1. Downloaded latest CLI configuration (user-specific, now includes the new VPC’s databases).
  2. Raised a JIT request through the Cloudanix Console for a database in the new VPC.
  3. Approved the request.
  4. Retrieved temporary database credentials via the CLI.
  5. Connected to the database using the generated credentials.
  6. Confirmed access worked — queries executed successfully.
  7. Verified revocation — credentials invalidated after session expiry.

Total time from start to validated, working JIT DB access: approximately 2 hours.

What Makes This Repeatable

Each VPC Deployment Is Independent

The architecture principle that enables same-day VPC additions: each JIT DB deployment is self-contained within its VPC.

VPC 1 (Dev)           VPC 2 (Prod-1)       VPC 3 (Prod-2)       VPC 4 (Prod-3)       VPC 5 (AI Prod) ← NEW
├─ ECS Service        ├─ ECS Service        ├─ ECS Service        ├─ ECS Service        ├─ ECS Service
├─ IAM Policy         ├─ IAM Policy         ├─ IAM Policy         ├─ IAM Policy         ├─ IAM Policy
├─ CW Log Group       ├─ CW Log Group       ├─ CW Log Group       ├─ CW Log Group       ├─ CW Log Group
├─ Secrets            ├─ Secrets            ├─ Secrets            ├─ Secrets            ├─ Secrets
└─ SG Rules           └─ SG Rules           └─ SG Rules           └─ SG Rules           └─ SG Rules

No shared state between VPCs. No cross-VPC dependencies. Adding VPC 5 doesn’t touch VPCs 1–4. Removing VPC 5 (if the workload is decommissioned) doesn’t affect anything else.

Per-User CLI Configuration

One operational detail: when a new VPC is added, users need to download their updated CLI configuration. The configuration is user-specific (contains their identity context) and now includes the new VPC’s databases as requestable targets.

This is a one-time action per user after each VPC addition — download the new config file, and the new databases appear as options in their JIT request flow.

Consistent Developer Experience

For the 80+ developers who already use JIT DB daily across 4 VPCs, the 5th VPC is invisible in terms of workflow:

  • Same CLI command (cdx db connect).
  • Same request flow (select database, request access, get approved).
  • Same IDE connection (localhost + credentials from CLI).
  • Same audit trail (identity-stamped, time-bound, auto-revoked).

They don’t need to learn anything new. They just have additional databases available to request access to.

The Broader Pattern: Infrastructure That Scales by Addition

As this company grows — acquiring new customers that need dedicated infrastructure, launching new product lines on separate VPCs, expanding into new AWS regions — the JIT DB architecture scales by addition:

EventJIT DB ActionTimeImpact on Existing
New customer VPC createdRun setup script in new VPC~2 hoursZero
New region expansionDeploy ECS in new region’s VPC~2 hoursZero
Customer VPC decommissionedRemove ECS + IAM + logs~1 hourZero
New database added to existing VPCAdd RDS endpoint to configurationMinutesZero
New account onboardedSetup per-VPC in new account~2 hours per VPCZero

Each addition is atomic. Each removal is clean. The total deployment complexity grows linearly with VPCs, not exponentially.

What About the EKS Cluster in the New VPC?

The team also needed EKS JIT for a new staging cluster in the same VPC. During the onboarding session, the cluster wasn’t yet visible in the Cloudanix Console because:

  • An Identity Center / account refresh was initiated during the call.
  • The sync process takes 2–3 hours for new resources to appear.
  • EKS JIT follows a different onboarding path than Database JIT (role-based access through IAM Identity Center rather than credential-based access through the DB proxy).

The team was advised that once the sync completed, the new EKS cluster would appear as a requestable target in the Kubernetes JIT workflow. No additional infrastructure setup was needed for EKS JIT — it operates through the existing IAM Identity Center integration.

Platform Impact

MetricValue
Time to add new VPC (JIT DB)~2 hours
Impact on existing 4 VPC deploymentsZero
Developer workflow changeNone (download updated CLI config)
Infrastructure per VPCECS service + IAM policy + logs + secrets
Cross-VPC dependenciesNone
Total VPCs with JIT DB5 (across 4 accounts)
Cleanup time per VPC (if decommissioned)~1 hour

Growing Your JIT DB Footprint Across VPCs?

If your infrastructure is expanding — new customer workloads, new regions, new product lines each getting their own VPC — and you need database JIT access to scale with that growth without architectural overhead, Cloudanix Database JIT deploys per-VPC in ~2 hours with zero impact on existing deployments. Each addition is independent, each removal is clean, and the developer experience stays consistent regardless of how many VPCs exist.

Book a Free Assessment to discuss JIT DB deployment across your multi-VPC environment.

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