Skip to content

Commit

Permalink
Fix: correct Google SSO secret names (#1904)
Browse files Browse the repository at this point in the history
  • Loading branch information
thekaveman authored Feb 23, 2024
2 parents 6d0a87c + e07665e commit 2820d68
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions terraform/app_service.tf
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ resource "azurerm_linux_web_app" "main" {

# Google SSO for Admin

"GOOGLE_SSO_CLIENT_ID" = "${local.secret_prefix}google-sso-client-id",
"GOOGLE_SSO_PROJECT_ID" = "${local.secret_prefix}google-sso-project-id",
"GOOGLE_SSO_CLIENT_SECRET" = "${local.secret_prefix}google-sso-client-secret",
"GOOGLE_SSO_ALLOWABLE_DOMAINS" = "${local.secret_prefix}google-sso-allowable-domains",
"GOOGLE_SSO_STAFF_LIST" = "${local.secret_prefix}google-sso-staff-list",
"GOOGLE_SSO_SUPERUSER_LIST" = "${local.secret_prefix}google-sso-superuser-list"
"GOOGLE_SSO_CLIENT_ID" = "${local.secret_prefix}google-sso-client-id)",
"GOOGLE_SSO_PROJECT_ID" = "${local.secret_prefix}google-sso-project-id)",
"GOOGLE_SSO_CLIENT_SECRET" = "${local.secret_prefix}google-sso-client-secret)",
"GOOGLE_SSO_ALLOWABLE_DOMAINS" = "${local.secret_prefix}google-sso-allowable-domains)",
"GOOGLE_SSO_STAFF_LIST" = "${local.secret_prefix}google-sso-staff-list)",
"GOOGLE_SSO_SUPERUSER_LIST" = "${local.secret_prefix}google-sso-superuser-list)"

# Sentry
"SENTRY_DSN" = "${local.secret_prefix}sentry-dsn)",
Expand Down

0 comments on commit 2820d68

Please sign in to comment.