AWS and Cloudanix team co-authored this blog: Real-Time Threat and Anomaly Detection for Workloads on AWS

Cloudanix – Your Partner in Cloud Security Excellence

Agentless Cloud JIT: How Cloudanix Operates Without Deploying Lambdas or ECS in Your Environment

  • Tuesday, Aug 18, 2026

The First Question Security Teams Ask

When evaluating any cloud security platform, the first question from security-conscious teams isn’t about features. It’s about footprint:

“What do you deploy in our environment?”

This is the right question. Every component running in your cloud account is:

  • An attack surface (can it be compromised?).
  • A maintenance obligation (does it need patching?).
  • A resource consumer (does it cost money? Does it impact performance?).
  • A dependency (if it goes down, does something break?).

For Cloud Console JIT — the capability that manages permission set assignments in AWS IAM Identity Center — Cloudanix’s answer is: nothing deployed. One IAM role assumed. That’s it.

The Architecture: Role Assumption, Not Agent Deployment

What Exists in Your Account

When you onboard a cloud account for JIT access, a CloudFormation stack creates one resource:

An IAM cross-account role with:

  • A trust policy allowing Cloudanix’s AWS account to assume it.
  • Permissions scoped to what the platform needs (Identity Center operations for JIT, or broader read for CSPM if enabled).
  • Optional explicit deny statements for services you don’t want the role to access.

That’s the complete footprint. No Lambda function. No ECS task. No EC2 instance. No VPC. No security group. No ENI. No CloudWatch agent. No daemon running anywhere.

How JIT Operations Execute

When an engineer’s access request is approved:

  1. Cloudanix’s control plane (running in Cloudanix’s infrastructure, not yours) initiates the IAM operation.
  2. It assumes the cross-account role in your AWS account using AWS STS.
  3. It calls the IAM Identity Center API to create or remove a permission set assignment for the specific user.
  4. The API call completes — the permission set is assigned (or unassigned).
  5. The assumed role session ends.

The entire operation is an API call sequence: AssumeRole → CreateAccountAssignment (or DeleteAccountAssignment) → done. No persistent process. No running agent. No infrastructure to maintain.

What This Means Practically

ConcernAnswer
“Does it run in my VPC?”No. No VPC resources created.
“Does it consume compute?”No. No Lambda, ECS, or EC2 instances.
“Does it need patching?”No. No running software in your account.
“Can I audit its API calls?”Yes. Every API call appears in your CloudTrail.
“Can it access my data?”Only if you grant those permissions. JIT-only deployments don’t.
“What if Cloudanix goes down?”No running agent to crash. Existing access remains until expiry. No new grants until service restores.
“How do I remove it?”Delete the CloudFormation stack. One action. Everything gone.

Why Agentless Matters for Security Teams

Attack Surface Minimization

Every component in your environment is a potential compromise vector. A Lambda function can be invoked unexpectedly. An ECS task can be exploited if its container image has vulnerabilities. An EC2 instance is a server that needs OS patches. A VPC endpoint is a network path that could be misconfigured.

An IAM role with a trust policy is the minimum possible footprint:

  • It can’t be “compromised” in isolation — it requires valid credentials from the trusted account.
  • It has no running process to exploit.
  • It has no network presence to attack.
  • It has no software to patch.
  • Its only capability is defined by the IAM policy attached to it.

CloudTrail Visibility

Every action Cloudanix takes in your account appears in CloudTrail. When the platform assumes the role and makes an Identity Center API call, that event is logged with:

  • The role ARN that was assumed.
  • The source account (Cloudanix’s account) that assumed it.
  • The specific API call made (CreateAccountAssignment, DeleteAccountAssignment).
  • The target resources (user ID, permission set, account).
  • Timestamps.

Your security team can monitor these events, set up alerts, and verify that the role is only performing expected operations. Full transparency, no black box.

Permission Boundary Control

The IAM role’s policy is the complete definition of what Cloudanix can do in your account. If the policy allows sso:CreateAccountAssignment and sso:DeleteAccountAssignment, that’s all the platform can do. Period.

You control the policy. You can:

  • Restrict to specific permission sets (Cloudanix can only assign SecurityAudit and Developers_Editor, not AdministratorAccess).
  • Add explicit deny statements (even if the policy is broader, deny specific actions you don’t want).
  • Limit to specific Identity Center instances (if you have multiple).
  • Use Service Control Policies at the OU level for additional boundaries.

The security team defines the boundary. Cloudanix operates within it.

The Exception: Database JIT

There’s one JIT surface where infrastructure is deployed in the customer’s account: Database JIT.

Database JIT requires a component (ECS service) running in the customer’s VPC to reach RDS instances in private subnets and broker connections. This component:

  • Runs in the customer’s VPC, in their private subnet.
  • Is owned by the customer (their ECS service, their IAM policy, their logs).
  • Communicates outbound to Cloudanix’s control plane via HTTPS.
  • Does not expose any inbound network surface.

This architectural difference is driven by the access pattern: database connections require network-layer brokering that can’t be done purely through IAM API calls. Cloud Console JIT (which operates through IAM Identity Center APIs) doesn’t need this — it’s purely control-plane operations.

The distinction:

  • Cloud JIT, Kubernetes JIT, SaaS JIT: Agentless. Cross-account role only.
  • Database JIT: ECS component in customer’s VPC (required for private subnet connectivity).
  • Agentic JIT: SDK calls from the customer’s pipelines/workloads. Cloudanix provides the library; execution is in the customer’s environment.

Onboarding: 30 Minutes to Connected

The agentless model means onboarding is fast:

  1. Run CloudFormation stack (provided by Cloudanix) — creates the IAM role. Takes 2 minutes.
  2. Connect the account in the Cloudanix Console — validates the role can be assumed. Takes 30 seconds.
  3. Sync Identity Center data — reads users, groups, permission sets, and account assignments. Takes 5–10 minutes.
  4. Configure JIT policies — map groups to accounts and permission sets, set approval rules. Takes 15–20 minutes.
  5. Test — make a request, get approved, verify in SSO portal. Takes 2 minutes.

Total: under 30 minutes from “we haven’t connected any accounts” to “engineers can request JIT access.”

No infrastructure provisioning. No network configuration. No container deployment. No agent installation. No DNS changes. No security group modifications.

Removal: Equally Fast

If you decide to stop using Cloudanix:

  1. Delete the CloudFormation stack in your account.
  2. The IAM role is removed.
  3. Cloudanix can no longer assume any role in your account.
  4. No residual infrastructure. No orphaned resources. No cleanup.

Complete removal in one action. This is only possible because there’s nothing else deployed — no ECS services to decommission, no Lambda functions to delete, no log groups to clean up (for Cloud JIT).

The Trust Model

Agentless doesn’t mean “no trust.” You’re trusting Cloudanix with the ability to make IAM Identity Center API calls in your account. That trust is:

  • Bounded by the IAM policy you attach to the role.
  • Auditable through CloudTrail.
  • Revocable by deleting the role (instant, unilateral, no coordination needed).
  • Scoped to the APIs you’ve permitted (and nothing else, ever).

The trust relationship is explicit, visible, and under your control. Compare this to agent-based models where a running process in your VPC could theoretically do anything its runtime environment permits — and you’d need to reverse-engineer its behavior to verify.

Ready for Zero-Footprint JIT?

If your security team requires minimal deployment footprint — no agents, no Lambda functions, no ECS tasks running in your account — Cloudanix Cloud JIT operates entirely through a single IAM cross-account role. One role, visible in CloudTrail, bounded by your IAM policy, removable in one click.

Learn more about JIT access architecture or book a demo to see agentless onboarding in real time.

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