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

Cloudanix – Your Partner in Cloud Security Excellence

Transitioning from DevOps to DevSecOps

  • Sujay Maheshwari Sujay Maheshwari
  • Wednesday, Jan 17, 2024

Updated August 2026: This article was originally published in January 2024 and has been comprehensively updated to reflect current DevSecOps practices, tooling advancements, supply chain security requirements, and the impact of AI coding agents on security workflows as of 2026.

Introduction to DevOps

DevOps is a set of practices that combines software development (Dev) and IT operations (Ops) to shorten the software development lifecycle and provide continuous delivery with high quality. DevOps emphasizes collaboration, automation, and continuous improvement — breaking down the traditional silos between teams that write code and teams that deploy and maintain it.

At its core, DevOps introduced several foundational principles: Infrastructure as Code (IaC), Continuous Integration/Continuous Delivery (CI/CD), automated testing, and feedback loops that allow teams to iterate rapidly. These principles transformed how organizations build and ship software.

Introduction to DevSecOps

DevSecOps is an approach to software development that integrates security into the entire software development lifecycle (SDLC) from the beginning. This means that security is considered and implemented at every stage of the development process, from planning and design to coding, testing, and deployment.

The goal of DevSecOps is to shift security left — meaning that security is considered throughout the entire software development process, not just as an afterthought or a gate before production.

But the definition has evolved. In 2026, DevSecOps encompasses:

  • Code-level security: SAST, SCA, secrets scanning, and IaC analysis embedded in the PR workflow
  • Supply chain security: SBOM generation, dependency provenance verification (SLSA), and container image signing
  • Runtime security: Workload protection, behavioral monitoring, and cloud detection and response
  • Identity-centric security: Just-In-Time access, least privilege enforcement, and non-human identity governance
  • AI-agent security: Securing the code that AI agents write, the credentials they use, and the actions they take

The Evolution of Shift Left: From Detection to Prevention to Auto-Remediation

When DevOps was introduced to software development, security was never a part of it. Recently, with the rise of cloud adoption, open source software, and shift towards microservices, organizations became aware of the security risks associated with the development process.

DevSecOps when introduced was primarily focused on “Detecting risks as early as possible in the entire development cycle.” Shift Left always meant early detection of vulnerabilities present in an organization’s cloud infrastructure.

With the evolution of DevSecOps, shift left has expanded across three distinct maturity stages:

Stage 1: Early Detection (2018–2021)

The initial promise — find vulnerabilities in code rather than in production. SAST tools scan source code, SCA tools identify vulnerable dependencies, and secrets scanners catch hardcoded credentials before they hit the main branch.

Stage 2: Early Prevention (2022–2024)

Detection alone generates noise. Prevention means blocking insecure code from reaching production at all. This includes:

  • CI/CD quality gates that fail builds when critical issues are detected
  • Admission controllers in Kubernetes that reject non-compliant pod specs
  • IaC policy engines (OPA, Kyverno, Sentinel) that prevent misconfigurations from being provisioned
  • Pre-commit hooks that catch secrets before code is even pushed

Stage 3: Auto-Remediation (2025–present)

In our recent episode with Matt Tesauro, Matt clearly said “I’m seeing a huge step towards the auto-remediation capabilities, a huge step towards our prevention capabilities that wasn’t part of the DevSecOps circles.”

Auto-remediation means the system not only detects and prevents issues but actively fixes them:

  • GenAI-powered remediation playbooks that generate copy-paste-ready fix instructions — in the developer’s language, for their specific framework
  • Automated PR generation that proposes the fix as a code change, not just a finding
  • Runtime auto-remediation that isolates compromised workloads, revokes credentials, and restores secure state without human intervention

Security practitioners can detect issues early, but remediating and preventing them early still remains a challenge for many organizations. The gap between “finding detected” and “finding fixed” is where most security programs fail.

The Supply Chain Imperative

One of the most significant shifts since 2024 is the recognition that supply chain security is not optional in DevSecOps. The Log4Shell vulnerability, the XZ Utils backdoor, and the proliferation of typosquatting packages on npm and PyPI have made it clear: your code is only as secure as its dependencies.

Software Bill of Materials (SBOM)

Every artifact your pipeline produces should have an accompanying SBOM — a complete inventory of components, libraries, and their versions. SBOMs are now required by:

  • US Executive Order 14028 for government contractors
  • EU Cyber Resilience Act for products sold in the EU
  • Many enterprise procurement processes as a standard requirement

SLSA Framework (Supply-chain Levels for Software Artifacts)

SLSA provides a framework for ensuring the integrity of software artifacts throughout the supply chain. At its core:

  • Level 1: Builds are scripted and generate provenance
  • Level 2: Builds use a hosted service and provenance is authenticated
  • Level 3: Builds run on ephemeral environments, and provenance is non-forgeable

Container Image Signing

Using tools like Sigstore/cosign, organizations sign their container images after build, ensuring that only verified, trusted images are deployed into production. Admission controllers (like Kyverno) then enforce that only signed images pass through to runtime.

Practical implementation

# Example: Sign container image with cosign
cosign sign --key cosign.key myregistry.io/app:v1.2.3

# Verify before deployment
cosign verify --key cosign.pub myregistry.io/app:v1.2.3

Integrating these checks into your CI/CD pipeline means that supply chain compromises are caught before they reach your cluster — not after an attacker has already achieved persistent access.

How Organizations Can Practice DevSecOps

There is no one-size-fits-all approach. Organizations have various techniques to practice DevSecOps. But to get started, we separate this between startups, mid-market companies, and large enterprises.

For Startups (Limited Resources)

Startups are limited in resources — people, technology, and budget. The approach:

  • Upscale your Dev to practice SecOps: Rather than hiring a separate security team, train your developers on secure coding practices and give them tools that fit into their existing workflow.
  • Start with the highest-ROI tools: A SAST scanner in your CI pipeline, secrets scanning on pre-commit, and an SCA tool for dependency vulnerabilities covers 80% of code-level risk.
  • Use a unified platform: Rather than assembling five different tools, use a single platform that covers code security across SAST, SCA, secrets, and IaC with one integration.
  • Leverage AI-assisted remediation: GenAI-powered fix suggestions mean your developers don’t need to be security experts — they get specific, actionable remediation guidance in context.

For Mid-Market Companies (Growing Teams)

Mid-market organizations typically have a small security team (1–5 people) trying to cover a large surface:

  • Implement security champions: Place a security-minded developer in each squad who serves as the first line of security review.
  • Automate the CI/CD quality gate: Define a threshold (e.g., no Critical or High findings in dependencies, no secrets in code, IaC compliant with CIS benchmarks) and enforce it automatically.
  • Establish a vulnerability management workflow: Findings without ownership and SLAs don’t get fixed. Route findings to the right team via Jira or Slack with clear remediation timelines.
  • Integrate identity security early: Implement Just-In-Time access for cloud infrastructure so developers get temporary, scoped access rather than permanent admin roles.

For Large Enterprises (Dedicated Security Teams)

Large organizations have more resources, but also more complexity — multiple cloud accounts, hundreds of services, and diverse technology stacks:

  • Centralize policy with federated execution: Define security policies centrally (Security team), but allow teams to implement them in ways that suit their technology and workflow.
  • Invest in platform engineering: Build an internal developer platform that bakes security in by default. Developers shouldn’t need to “remember” to scan — the platform does it automatically.
  • Implement full supply chain security: SBOM generation, image signing, provenance verification, and dependency pinning across all pipelines.
  • Adopt a CNAPP+ approach: Unify code security, cloud posture, identity governance, workload protection, and compliance under one platform and one security graph. Correlation across these surfaces is what transforms a backlog of findings into prioritized risk.

Keeping the Right Balance Between Development and Security

The attitude of “Security teams always slow down the development lifecycle” is the very first thing that needs to be uprooted from the minds of development teams.

For sure, security acts as a speed bump. But security teams are like frontline soldiers that notice all the risks that attackers could execute against the infrastructure they are trying to protect.

Why toll-gating fails

Toll-gating — requiring security sign-off before any deployment — creates bottlenecks:

  • Developers batch changes to reduce the number of sign-offs, making each review larger and riskier
  • Security teams become overloaded and either rubber-stamp approvals or create week-long backlogs
  • The adversarial relationship between Dev and Sec deepens

The shift-left alternative

Instead of gating at the end, integrate security throughout:

  • At commit: Pre-commit hooks catch secrets and basic coding errors
  • At PR: Automated SAST/SCA/IaC scanning runs as part of the PR check, with findings posted as inline comments
  • At build: Container image scanning, SBOM generation, and image signing happen automatically
  • At deploy: Admission controllers enforce policy compliance without human intervention
  • At runtime: Behavioral monitoring and anomaly detection catch what static analysis cannot

DevSecOps teams should be seen as the “How to security” of the development cycle. They enable developers to create a safe and secure production environment without being the bottleneck.

Defining meaningful metrics

Defining meaningful metrics helps organizations measure the quality of their coding and application development. Key DevSecOps metrics include:

  • Mean Time to Remediate (MTTR): How long from finding detection to fix deployed?
  • Vulnerability escape rate: What percentage of vulnerabilities make it to production?
  • Coverage: What percentage of repositories and pipelines have security scanning enabled?
  • Developer adoption: What percentage of developers actively engage with security findings?
  • False positive rate: Are developers losing trust in the tools because of noise?

With metrics, targeting and prioritizing instances becomes much easier. Learn more about shift-left metrics in our dedicated article.

DevSecOps for Cloud-Native Environments

DevSecOps not only automates security tasks but also codifies security into your organizational infrastructure. Security policies and controls should be written in code and integrated into the CI/CD pipeline.

Infrastructure as Code security

IaC is the backbone of cloud-native DevSecOps. Every cloud resource should be defined in Terraform, CloudFormation, Pulumi, or similar tools. This enables:

  • Pre-deployment scanning: Catch misconfigurations before resources are provisioned
  • Drift detection: Identify when running infrastructure deviates from its defined state
  • Version control: Track who changed what, when, and why — with full audit trail
  • Policy as Code: Define compliance requirements in a machine-readable format (OPA/Rego, Sentinel, Kyverno policies) that can be enforced automatically

The maker-checker problem

These situations often lead to maker-checker problems when implementing DevSecOps. Organizations need to understand that developers should not write security code that checks their own work. Security engineers should be responsible for writing security policies and ensuring they are objective and unbiased.

This doesn’t mean separate teams operate in silos — it means clear ownership:

  • Developers own the application code and are responsible for fixing vulnerabilities in their code
  • Security engineers own the policies, rules, and detection logic
  • Platform engineers own the pipeline infrastructure that enforces these policies automatically

Kubernetes-native DevSecOps

For organizations running on Kubernetes, DevSecOps extends into the orchestration layer:

  • Admission controllers: Enforce that only compliant workloads are deployed (no privileged containers, no latest tags, mandatory resource limits)
  • Network policies: Define least-privilege network communication between services
  • Pod Security Standards: Enforce baseline, restricted, or privileged security contexts
  • Runtime policies: Monitor for unexpected behavior at the pod level — process execution, network connections, file access

AI coding agents and DevSecOps

A new consideration in 2026 is the role of AI coding agents in the development pipeline. Claude Code, Cursor, Kiro, and Copilot now write production code, create infrastructure definitions, and even submit pull requests. This introduces new DevSecOps challenges:

  • AI-generated code quality: Scanning AI-generated code is no different technically, but the volume and pace of code generation means your scanning tools must be fast and low-friction.
  • Agent credential security: AI agents need cloud access to deploy and test. Granting them long-lived credentials is a major risk. Coding Agent JIT provides scoped, time-bound, auto-revoked access — the agent never sees a raw credential.
  • Context leakage prevention: AI agents that read your codebase might inadvertently send sensitive code or credentials to external LLM providers. Coding Agent Firewall blocks secret and PII exfiltration before it leaves the developer’s machine.

When it comes to cloud-native environments, security needs to be a day-to-day activity. Security engineers should work closely with developers and DevOps teams to integrate security into the development process — not as a gate, but as a guardrail.

Building Your DevSecOps Roadmap

Transitioning from DevOps to DevSecOps is not a one-time project — it is a maturity journey. Here is a phased approach:

Phase 1: Foundation (Weeks 1–4)

  • Enable secrets scanning across all repositories
  • Integrate SCA scanning into CI pipelines for critical applications
  • Implement Just-In-Time access for production cloud accounts
  • Define your top 5 security policies (what will break the build?)

Phase 2: Scale (Months 2–3)

  • Extend SAST/SCA/IaC scanning to all repositories
  • Implement automated vulnerability routing (findings → Jira tickets → team ownership)
  • Deploy container image scanning and begin image signing
  • Establish security champion roles in engineering teams

Phase 3: Mature (Months 4–6)

  • Implement full supply chain security (SBOM, SLSA, provenance)
  • Deploy admission controllers for Kubernetes policy enforcement
  • Enable GenAI-powered auto-remediation
  • Measure and report on MTTR, escape rate, and developer adoption metrics

Phase 4: Optimize (Ongoing)

  • Correlate code findings with runtime posture using CNAPP+ platform capabilities
  • Implement AI-agent security guardrails
  • Conduct regular red-team exercises against your pipeline
  • Contribute security policies back to platform engineering for default enforcement

Conclusion

DevSecOps represents a transformative shift from DevOps, integrating security throughout the entire software development lifecycle. It emphasizes early detection, prevention, and auto-remediation of vulnerabilities. In 2026, this extends beyond traditional code scanning into supply chain integrity, AI-agent governance, and identity-centric access controls.

Balancing development velocity and security, practicing in diverse organizational contexts, and codifying security into cloud-native environments are pivotal for successful DevSecOps implementation. The goal is not to slow development down — it is to make secure development the path of least resistance.

Security is not a gate. It is a guardrail. And the best guardrails are invisible to the teams they protect.

People Also Read

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