becoming a cloud security engineer in 2026 — skills that have shifted — Malay Tech JournalSkip to content

becoming a cloud security engineer in 2026 — skills that have shifted

The role of cloud security engineer has changed more in 2 years than in the 5 years before. Here's an honest breakdown: what's stayed the same, what's changed, and what new skills you need now.

Notes in English for anyone entering or already in cloud security who wants to know what’s actually changed right now.

There’s a quote from CSOH.org that nails it:

“Cloud Security Engineer is the connective tissue that turns ten specialists’ work into one coherent security posture.”

You’re not a specialist in one thing. You’re the person who connects everything.

But “everything” has changed fast. The skills that got you hired in 2023 aren’t enough for 2026 — not because you stopped learning, but because the landscape shifted structurally.

This post breaks it down honestly: what stayed the same, what changed, and what’s completely new.


Before we talk about new stuff, let’s be clear: foundation is still the same. People who skip this because they want to jump straight to AI/agentic stuff will struggle.

Foundation skills that are still required:

SkillWhy it still matters
Networking fundamentalsVPC, subnets, security groups, NACLs — cloud networking still uses the same concepts
IAM basicsRoles, policies, least-privilege — even more important now because agents have identities too
LinuxEC2, containers, pods — everything runs on Linux. ss, iptables, strace, auditd
Scripting (Python/Bash)Automation, detection engineering, custom tooling
Threat modelingSTRIDE still relevant. Now you extend it for AI/agent threats
Incident response basicsCollect evidence, contain, eradicate, recover — the flow hasn’t changed

If you’re weak in any of those — fix that first before learning anything else.


Used to be IAM = manage users and service accounts.

Now you manage:

  • Human identity — MFA, SSO, conditional access
  • Workload identity — SPIFFE/SPIRE, pod service accounts, instance profiles
  • Agent identity — AI agents have identity too. Manifest declaration, capability token, audit binding
  • Non-human identity (NHI) — API keys, OAuth tokens, CI/CD service accounts — now there’s dedicated tooling: Aembit, Indent, Strata
Terminal window
# SPIFFE workload identity example
# each workload gets an SVID (SPIFFE Verifiable Identity Document)
# no more hardcoded credentials
spiffe://trust-domain/ns/production/sa/security-auditor

What to learn: SPIFFE/SPIRE documentation, cloud provider workload identity (AWS IRSA, GCP Workload Identity Federation, Azure Managed Identity).


Post-xz-utils backdoor (2024), Log4Shell (2021), SolarWinds (2020) — supply chain attacks are now a standard attack vector, not an edge case.

New things you need to understand:

  • SBOM (Software Bill of Materials) — inventory all your dependencies. The EU Cyber Resilience Act requires SBOM for software sold in the EU.
  • SLSA framework (Supply chain Levels for Software Artifacts) — verify provenance from source to build to deploy
  • Sigstore/Cosign — cryptographically sign and verify container images
Terminal window
# Verify container image signature
cosign verify \
--certificate-identity="https://github.com/actions/..." \
--certificate-oidc-issuer="https://token.actions.githubusercontent.com" \
myapp:latest

Tools:

  • Trivy — SCA + container scan + secret detection (all in one)
  • Grype — vulnerability scanner for SBOM
  • Syft — generate SBOM from container/filesystem
  • Renovate/Dependabot — automated dependency updates

Runtime security used to be expensive, complicated, only for high-security environments.

Now with eBPF, you can deploy runtime security to everyone without heavy kernel modules or agents.

Terminal window
# Falco rule example — detect unexpected network connections from container
- rule: Unexpected outbound connection
desc: Container makes outbound connection to IP not in allowlist
condition: >
outbound and container and
not proc.name in (known_processes) and
not fd.sip in (allowed_ips)
output: >
Unexpected connection (user=%user.name container=%container.name
ip=%fd.sip port=%fd.sport)
priority: WARNING

Tools you need to know:

  • Falco — runtime threat detection, Kubernetes-native
  • Tetragon (Cilium) — eBPF-based enforcement, not just detect but can enforce
  • KubeArmor — security policy enforcement for Kubernetes workloads

Why it matters now: Container escape attacks are getting more sophisticated. With agents that can run arbitrary code, runtime detection is a critical safety net.


IaC security used to run during audits or before production. Now it runs before you push code.

.pre-commit-config.yaml
repos:
- repo: https://github.com/bridgecrewio/checkov
rev: 3.2.0
hooks:
- id: checkov
args: [--framework, terraform]
- repo: https://github.com/aquasecurity/tfsec
rev: v1.28.0
hooks:
- id: tfsec

Policy-as-code (OPA/Rego) — write policy in code, enforce in CI/CD:

# Rego policy — block public S3 buckets
deny[msg] {
resource := input.resource.aws_s3_bucket[name]
resource.acl == "public-read"
msg := sprintf("S3 bucket '%v' must be private", [name])
}

What this shift means: Cloud Security Engineers now need to be comfortable with developer tools — git hooks, CI/CD pipelines, PR review process.


Gartner predicted 50% of SOCs would have AI decision support by end 2026. That prediction is now operational reality.

Concrete things happening now:

  • AI-assisted alert triage — agent reviews alert, classifies severity, suggests response, escalates only what needs human judgment
  • AI-generated detection rules — “describe the behavior” → agent generates Sigma rule / KQL query
  • Natural language threat hunting — “show me all EC2 instances that made outbound connections to unknown IPs in the last 24 hours” → auto-translate to query
  • Automated remediation — agent detects misconfigured S3 bucket, understands context, writes a PR to fix it, waits for human approval before applying

What to learn now:

  • How to validate AI-generated detection rules (don’t just trust blindly)
  • How to tune AI alert classifier to reduce false positives
  • How to design human-in-the-loop workflows for automated remediation
  • OWASP Top 10 for LLM Applications (because you’ll be securing AI tools too)

This is the newest and most underestimated thing.

December 2025: OWASP published Top 10 for Agentic Applications — the first formal taxonomy for autonomous AI agent risks. This isn’t an extension of the usual LLM Top 10 — it’s a new risk category:

  • Goal hijacking, tool misuse, identity abuse, memory poisoning
  • Cascading failures, rogue agents, data exfiltration via reasoning
  • Privilege escalation, insecure tool chaining, audit evasion

Cloud Security Engineer in 2026 needs to know:

  1. How to threat model agent systems (not just application threat modeling)
  2. How to design least-privilege Manifests for agents
  3. How to set up agent observability (Langfuse, OpenTelemetry)
  4. How to review agent Manifests before production deploy (like code review)
  5. AEGIS Framework (Forrester) — governance framework for enterprise agentic AI deployment

As the cloud security engineer role has broadened, some specializations have emerged:

SpecializationFocusExample work
Cloud Security Engineer (generalist)Connective tissue — IAM, posture, design review, detectionsAWS security audit, policy review, architecture sign-off
Detection EngineerWrite and maintain detection rules, alert triage pipelineSigma rules, KQL queries, SIEM tuning
AI/LLM Security EngineerSecure AI systems, guardrail design, agentic threat modelingOWASP LLM compliance, NeMo Guardrails implementation
Supply Chain Security EngineerSBOM, provenance, dependency riskSigstore setup, SLSA compliance, SCA pipeline
Platform Security EngineerSecure the developer platform itselfCI/CD security, secrets management, IaC policy

Honest take: At entry level, you start as a generalist. Specialization comes with experience. But you need to be aware of all these specializations so you can communicate and collaborate with specialists.


  • AWS/Azure fundamentals — at least one cloud platform to operational depth
  • Checkov + Trivy daily use — scan your own code repo
  • Falco setup on local Kubernetes (minikube/kind)
  • Read OWASP Top 10 for LLM Applications + Agentic Applications

  • Write one OPA/Rego policy from scratch
  • Setup pre-commit hooks with security scan in a project
  • Try SPIFFE/SPIRE locally — understand workload identity flow
  • Generate SBOM with Syft, scan with Grype

  • Setup NeMo Guardrails for one LLM application
  • Implement agent Manifest + Agent Governance Toolkit in a project
  • Setup Langfuse to trace agent behavior
  • Read Microsoft Agent Governance Toolkit documentation and try it

  • Build one complete “secure agent” project — threat model, Manifest, guardrails, observability
  • Join a CTF with cloud/AI security category (CloudGoat, HackTheBox Cloud)
  • Contribute to an open source security tool (Falco, Checkov, Guardrails AI)
  • Write about what you learned — blog, LinkedIn, anywhere

The role of cloud security engineer now is broad but needs depth in at least one area.

People who survive in this field are those who treat breadth as a strength — connectors who understand how IAM, runtime security, supply chain, and now AI security connect with each other.

Not an expert in everything. But understand enough to make the right decision when two domains overlap — and in 2026, every domain overlaps with AI.


Next read: If you want the broader 2026 picture — how Cloud Security, AI, Agentic OS, and Intent-driven architecture converge into one engineering narrative — see Cloud Security + AI 2026 — Trend Map for Engineers.


References:

  • CSOH.org — Cloud Security Engineer: The Role in Depth
  • Scaler — Cloud Security Engineer Roadmap 2026
  • Datacipher — 10 Cloud Security Skills That Set IT Professionals Apart in 2026
  • Refonte Learning — Cloud Security Engineering in 2026: 5 Trends
  • Microsoft — Secure Agentic AI End-to-End (RSAC 2026)
  • OWASP Top 10 for Agentic Applications (Dec 2025)
  • Forrester AEGIS Framework for Agentic AI (2026)
  • SLSA Framework — Supply Chain Levels for Software Artifacts