1. Packages
  2. Google Cloud (GCP) Classic
  3. How-to Guides
  4. GCP OIDC Pulumi program in TypeScript
Google Cloud v8.41.1 published on Monday, Aug 25, 2025 by Pulumi

GCP OIDC Pulumi program in TypeScript

gcp logo
Google Cloud v8.41.1 published on Monday, Aug 25, 2025 by Pulumi

    View Code

    This Pulumi program enables Pulumi Cloud to authenticate with an OIDC provider in a Google Cloud project, and creates a Pulumi ESC environment that allows both the gcloud CLI and the Pulumi Google Cloud provider to consume temporary (admin) credentials.

    Last update: September 2025

    πŸ“‹ Pre-requisites

    πŸ‘©β€πŸ« Get started

    This Pulumi example is written as a template. It is meant to be copied via pulumi new

    # login to your Pulumi Cloud if you haven't already
    pulumi login
    
    # pick a name for your output directory (--dir is optional. will use current directory if omitted)
    my_dir=my-gcp-oidc
    pulumi new https://github.com/pulumi/examples/gcp-ts-oidc-provider-pulumi-cloud --dir ${my_dir}
    cd ${my_dir}
    

    Once copied to your machine, feel free to edit as needed.

    🎬 How to run

    This template will pick up the thumbprint from the URL that you set in the stack configuration. By default it will use the OIDC IDP URL for Pulumi Cloud.

    To deploy your infrastructure, run:

    $ pulumi up
    # select 'yes' to confirm the expected changes
    # πŸŽ‰ Ta-Da!
    

    Note: due to propagation delays, the OIDC connection may take a few minutes before it is usable.

    🧹 Clean up

    To clean up your infrastructure, run:

    $ pulumi destroy
    # select 'yes' to confirm the expected changes
    

    Additional notes

    This project is generally useful as a baseline setup for using ESC with Google Cloud. You may want to refine the scope of the accounts permissions (e.g. from roles/admin to roles/writer or roles/reader), or you may want to import the generated ESC environment into a new ESC environment to enable scenarios like accessing Google Secret Manager secrets.

    gcp logo
    Google Cloud v8.41.1 published on Monday, Aug 25, 2025 by Pulumi