Skip to content

Instantly share code, notes, and snippets.

@bvkisa
Last active September 4, 2024 13:47
resource "google_app_engine_application" "app" {
project = google_project.my_project.project_id
location_id = "us-central"
iap {
enabled = true
oauth2_client_id = var.oauth2_client_id
oauth2_client_secret = var.oauth2_client_secret
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment