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.com

Resource Pattern

projects/{project}/locations/{location}/gateways/{gateway}

Chat

Powered by AI

Talk 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 DocumentationTerraform
terraform
1resource "google_api_gateway_api" "main" {
2 provider = google-beta
3 api_id = "agw-${var.workload}-${var.environment}"
4}
5
6resource "google_api_gateway_gateway" "main" {
7 provider = google-beta
8 api_config = google_api_gateway_api_config.main.id
9 gateway_id = "agw-${var.workload}-${var.environment}"
10 region = var.region
11}
Utilities

Utilities to support app deployment or configuration.