Skip to content

fix(functions): Set serviceAccount for Cloud Functions when custom service account is specified#9598

Open
HassanBahati wants to merge 7 commits into
mainfrom
@invertase/fns-custom-sa
Open

fix(functions): Set serviceAccount for Cloud Functions when custom service account is specified#9598
HassanBahati wants to merge 7 commits into
mainfrom
@invertase/fns-custom-sa

Conversation

@HassanBahati
Copy link
Copy Markdown

@HassanBahati HassanBahati commented Dec 9, 2025

Fixes 8841

Description

When deploying Cloud Functions v2 with a custom service account specified via setGlobalOptions({ serviceAccount: "..." }), the Firebase CLI fails if the default compute service account has been deleted.

Scenarios Tested

  • Custom SA sets both buildConfig.serviceAccount and serviceConfig.serviceAccountEmail
  • Shorthand SA notation (sa@) expands correctly
  • serviceAccount: null sets both fields to null
  • No SA specified — buildConfig.serviceAccount is omitted

Sample Commands

@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello @HassanBahati, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request addresses a critical deployment failure for Cloud Functions v2 by ensuring that custom service accounts are properly applied to the function's build configuration. This change prevents issues arising from the absence of a default compute service account, making deployments more robust when specific service accounts are mandated.

Highlights

  • Bug Fix: Resolves an issue where deploying Cloud Functions v2 with a custom service account would fail if the default compute service account had been deleted.
  • Service Account Configuration: Ensures that the buildConfig.serviceAccount field is correctly set for Cloud Functions when a custom service account is specified, allowing the build process to use the designated service account.
  • Code Changes: The BuildConfig interface in cloudfunctionsv2.ts now includes an optional serviceAccount field, and the functionFromEndpoint utility has been updated to populate this field based on the endpoint's service account.
  • Testing: New test cases have been added to cloudfunctionsv2.spec.ts to validate the correct assignment of buildConfig.serviceAccount when a custom service account is provided.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request correctly fixes an issue where a custom service account was not being applied to the build configuration for Cloud Functions v2 deployments. The changes are logical, and the accompanying tests are thorough, covering various scenarios including null, shorthand, and full service account specifications. I have one suggestion to improve code consistency, but overall, this is a solid contribution that addresses the reported bug effectively.

Comment thread src/gcp/cloudfunctionsv2.ts Outdated
@HassanBahati HassanBahati marked this pull request as ready for review December 9, 2025 16:06
@cabljac
Copy link
Copy Markdown

cabljac commented Dec 9, 2025

/gemini

@gemini-code-assist
Copy link
Copy Markdown
Contributor

It looks like you tried to invoke a command, but you didn't specify which one. Please use /gemini <command> with one of the following commands:

  • /gemini review: Performs a code review for the current pull request in its current state.
  • /gemini summary: Provides a summary of the current pull request in its current state.
  • /gemini help: Displays a list of available commands.

@cabljac
Copy link
Copy Markdown

cabljac commented Dec 9, 2025

/gemini review

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request fixes an issue where Cloud Functions v2 deployments with a custom service account would fail. The fix involves correctly setting the serviceAccount property in the buildConfig of the function. The changes look good and are well-tested.

I've added a couple of suggestions to improve code maintainability by reducing duplication in both the implementation and the tests. One suggestion is to refactor the service account handling to avoid repetitive logic, and the other is to remove a redundant test case.

Overall, this is a solid fix for an important bug.

Comment thread src/gcp/cloudfunctionsv2.spec.ts Outdated
Comment thread src/gcp/cloudfunctionsv2.ts Outdated
@HassanBahati
Copy link
Copy Markdown
Author

/gemini review

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request addresses a bug where the service account for the build process was not being set for Cloud Functions v2, leading to deployment failures when the default compute service account is unavailable. The changes correctly set both buildConfig.serviceAccount and serviceConfig.serviceAccountEmail when a custom service account is specified in the function options. The implementation properly handles setting, unsetting (with null), and expanding shorthand service account notations. The accompanying test updates are thorough and validate the new behavior. The changes are well-implemented and directly resolve the reported issue.

@samuel-pp
Copy link
Copy Markdown

@cabljac Is there any progress on this PR?

@samuel-pp
Copy link
Copy Markdown

@andrewbrook @christhompsongoogle @joehan I apologize for drawing attention in this manner. I would like to know if this PR is allowed to be merged.

@christhompsongoogle
Copy link
Copy Markdown
Contributor

@andrewbrook @christhompsongoogle @joehan I apologize for drawing attention in this manner. I would like to know if this PR is allowed to be merged.

I'll let Joe take a look - I won't merge it this week though since we're in a code chill prior to Google I/O next week

@samuel-pp
Copy link
Copy Markdown

@andrewbrook @christhompsongoogle @joehan I apologize for drawing attention in this manner. I would like to know if this PR is allowed to be merged.

I'll let Joe take a look - I won't merge it this week though since we're in a code chill prior to Google I/O next week

I really appreciate the progress on this matter. I will temporarily fork the repository myself and adopt the changes from this PR.

@joehan joehan requested a review from wandamora May 12, 2026 18:43
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.

Ran this through gemini and it also suggested some additional test cases:

  1. updateFunction Mask Verification: updateFunction unit tests in src/gcp/cloudfunctionsv2.spec.ts currently only verify default environment variable injection. A test case should be added to verify that updating a function with a custom or null buildConfig.serviceAccount correctly populates the updateMask query parameter.
  2. endpointFromFunction Reverse Mapping Tests: While the forward transformation (functionFromEndpoint) is thoroughly tested, the inverse transformation (endpointFromFunction) should include test cases ensuring that when serviceAccountEmail is null or omitted in a GCF API response, endpoint.serviceAccount is correctly mapped to null or undefined.

: proto.formatServiceAccount(from, endpoint.project, true /* removeTypePrefix */),
);

if (Object.prototype.hasOwnProperty.call(endpoint, "serviceAccount")) {
Copy link
Copy Markdown
Contributor

@wandamora wandamora May 13, 2026

Choose a reason for hiding this comment

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

nit: Can you leave a comment here on why we're not using convertIfPresent like how the rest of the function is using the proto API? This could help with readability.

Copy link
Copy Markdown
Contributor

@wandamora wandamora left a comment

Choose a reason for hiding this comment

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

New to this codebase and at a glance this looked good, but after running a sanity check through Gemini, i left some suggestions.

@wiz-9635d3485b
Copy link
Copy Markdown

Wiz Scan Summary

Scanner Findings
Vulnerability Finding Vulnerabilities -
Data Finding Sensitive Data -
Secret Finding Secrets -
IaC Misconfiguration IaC Misconfigurations -
SAST Finding SAST Findings 1 Info
Software Management Finding Software Management Findings -
Total 1 Info

View scan details in Wiz

To detect these findings earlier in the dev lifecycle, try using Wiz Code VS Code Extension.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

When deploying the 2gen function, the configured custom service account does not take effect

6 participants