Skip to content

Instantly share code, notes, and snippets.

View edceja's full-sized avatar

Eduardo Ceja edceja

View GitHub Profile
@edceja
edceja / main.tf
Created January 12, 2024 21:54
deploying my API Gateway using Terraform
#--------------------
# API gateway
#--------------------
resource "google_api_gateway_api" "api_gw" {
provider = google-beta
api_id = "my-api"
project = "crcbackend2"
}