Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add IAP service account #104

Merged
merged 2 commits into from
Dec 20, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add IAP service account
  • Loading branch information
cmorabito-woolpert committed Dec 20, 2023
commit a13d50ad651cfa78aff0f2171b78003209598a6e
7 changes: 7 additions & 0 deletions deployment/iap.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# IAP service account, required to enable IAP for Cloud Run
# https://cloud.google.com/iap/docs/enabling-cloud-run
resource "google_project_service_identity" "iap_sa" {
provider = google-beta
project = module.project.project_id
service = "iap.googleapis.com"
}