Skip to content
Closed
Changes from all commits
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
13 changes: 6 additions & 7 deletions infra/keys/keys.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@
# Service Account Keys
# This file contains the service account for the project, the account id
# and the users authorized to use it
# service_accounts:
# - account_id: account_id
# display_name: account_@project_id.iam.gserviceaccount.com
# authorized_users:
# - email: "user1@google.com"
# - email: "user2@google.com"
service_accounts:
- account_id: hansel-tepal-gsoc-2026
display_name: "Hansel Yael Tepal Briseño GSoC 2026"
authorized_users:
- email: "hanzel.yael@hotmail.com"
Comment on lines +19 to +23

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

There are two issues with this configuration:

  1. Duplicate Key Override: Defining service_accounts: here while keeping service_accounts: [] on line 26 will cause the YAML parser to override this configuration with an empty list (or fail). The service_accounts: [] line on line 26 must be removed.
  2. Typos in Display Name: The display name "Hansel Teapal GSoc 206" contains typos ("Teapal" instead of "Tepal", and "GSoc 206" instead of "GSoC 2026").
service_accounts:
- account_id: hansel-tepal-gsoc-2026
  display_name: "Hansel Tepal GSoC 2026"
  authorized_users:
    - email: "hansmarcus14@gmail.com"
    - email: "hanzel.yael@hotmail.com"

- email: "hansmarcus14@gmail.com"

service_accounts: []
Loading