Skip to content

Commit

Permalink
fix(terraform): correct Google SSO secret names
Browse files Browse the repository at this point in the history
quick follow-up to #1855 that was missed in review
  • Loading branch information
thekaveman authored Feb 23, 2024
1 parent 6d0a87c commit e07665e
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 e07665e

Please sign in to comment.