Terminology Index

Glossary

1801 terms

Open concept maps

Showing 1-32 of 1801 terms

#
1
A
31

API Gateway Security

Securing the API gateway, the entry point that sits in front of backend services and APIs, by enforcing authentication, authorization, rate limiting, and input checks centrally so individual services do not each have to.

In microservices and cloud-native designs, the gateway is a natural place to apply consistent security controls and a high-value target if left weak. Reviewers check that it authenticates callers, enforces least privilege to backend services, throttles abuse, and does not become a single point of bypass.

Introduced in: Cloud-Native Security, Security Architecture Review

Examples

  • Requiring valid tokens at the gateway before any request reaches a service.
  • Applying rate limiting at the gateway to blunt abuse and brute-forcing.
  • Centralizing TLS termination and request validation at the gateway.

No related terms linked yet.