Last active
April 3, 2020 08:49
-
-
Save ernestkamara/2e6373e1c29f889f647fcf9b9533c0e9 to your computer and use it in GitHub Desktop.
Cloud Function Demo Service Account
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ./account_key.json | |
// https://console.firebase.google.com/u/1/project/project_id/settings/serviceaccounts/adminsdk | |
// Google recommends using Secret Manager to store API keys, passwords, certificates, and other sensitive data. | |
{ | |
"type": "service_account", | |
"project_id": "...", | |
"private_key_id": "...", | |
"private_key": "...", | |
"client_email": "...", | |
"client_id": "...", | |
"auth_uri": "...", | |
"token_uri": "...", | |
"auth_provider_x509_cert_url": "...", | |
"client_x509_cert_url": "..." | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment