agw
API Gateway
Business AppsGCP
General
General information about the service.
Description
API Gateway enables you to create, secure, and monitor APIs for Google Cloud serverless backends including Cloud Functions, Cloud Run, and App Engine.
Service ID
apigateway.googleapis.comResource Pattern
projects/{project}/locations/{location}/gateways/{gateway}References
Chat
Powered by AITalk to this service to learn more about it.
Suggested questions:
Naming
The conventions, rules, and restrictions for naming this service.
Naming Convention
agw-{workload}-{env}Length
4-63
Valid Characters
Lowercase letters, numbers, hyphens
Scope
regional
Code
Deploy your infrastructure as code using your preferred tooling.
Official Documentation
terraform
1resource "google_api_gateway_api" "main" {2 provider = google-beta3 api_id = "agw-${var.workload}-${var.environment}"4}56resource "google_api_gateway_gateway" "main" {7 provider = google-beta8 api_config = google_api_gateway_api_config.main.id9 gateway_id = "agw-${var.workload}-${var.environment}"10 region = var.region11}
Utilities
Utilities to support app deployment or configuration.