Skip to content

Commit cc13098

Browse files
Update Firebase+Okta deployment instructions
1 parent 8a89ba3 commit cc13098

File tree

1 file changed

+22
-15
lines changed

1 file changed

+22
-15
lines changed

okta-auth/README.md

+22-15
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,10 @@ and install the Firebase CLI tool:
4040
later.
4141
2. On the Project Overview page, add a new web app. Be sure **Also set up
4242
Firebase Hosting for this app** is selected.
43-
3. If you plan to try the demo in the emulator, [generate and download a
44-
service account key][svcacct].
43+
3. On the Project Settings page, open the [Service Accounts][svcacct]
44+
section and take note of your Admin SDK service account ID (it looks
45+
like an email address). If you plan to try the demo in the emulator,
46+
also generate and download a service account key file.
4547

4648
3. If you don't already have a Node.js 10 (or newer) environment,
4749
[install Node.js](https://nodejs.org/).
@@ -85,31 +87,24 @@ and install the Firebase CLI tool:
8587
## Deploy the demo to Firebase Hosting and Cloud Functions
8688
8789
1. [Upgrade your Firebase project to the Blaze (pay as you go) plan](https://console.firebase.google.com/project/_/overview?purchaseBillingPlan=metered).
88-
The Blaze plan is required to access external services (Okta) from Cloud
89-
Functions.
90+
The Blaze plan is required to access external services (in this case, Okta)
91+
from Cloud Functions.
9092
91-
2. In the Google Cloud console:
92-
93-
1. [Enable the IAM Service Account Credentials API](https://console.cloud.google.com/apis/api/iamcredentials.googleapis.com/overview?project=_).
94-
2. On the [IAM](https://console.developers.google.com/iam-admin/iam?project=_)
95-
page, edit the account named **App Engine default service account** and
96-
add the **Service Account Token Creator** role.
97-
98-
3. Make sure the Firebase CLI tool is set to use your Firebase project:
93+
2. Make sure the Firebase CLI tool is set to use your Firebase project:
9994
10095
```
10196
$ cd functions-samples/okta-auth
10297
okta-auth$ firebase login
10398
okta-auth$ firebase use <YOUR_FIREBASE_PROJECT_ID>
10499
```
105100
106-
4. Optional: If you have configuration files from local testing, delete them:
101+
3. Optional: If you have configuration files from local testing, delete them:
107102
108103
```
109104
okta-auth$ rm public/okta-config.js ; rm functions/.env ; rm .runtimeconfig.json
110105
```
111106
112-
5. Run `setup.js -d` from the Firebase project directory. The `-d` flag
107+
4. Run `setup.js -d` from the Firebase project directory. The `-d` flag
113108
configures the web app and backend for deployment.
114109
115110
```
@@ -121,10 +116,22 @@ and install the Firebase CLI tool:
121116
environment settings. The script won't overwrite existing files or Cloud
122117
Functions environment settings.
123118
124-
6. Deploy the project:
119+
5. Deploy the project:
125120
126121
```
127122
okta-auth$ firebase deploy
128123
```
129124
125+
6. In the Google Cloud console:
126+
127+
1. [Enable the IAM Service Account Credentials API](https://console.cloud.google.com/apis/api/iamcredentials.googleapis.com/overview?project=_).
128+
2. On the [Cloud Functions](https://console.cloud.google.com/functions/list?project=_)
129+
page,
130+
1. Click the name of your Cloud Function (**`api`**) to open the
131+
Function Details page.
132+
2. Click **Edit**.
133+
3. Set the service account to your Admin SDK service account.
134+
4. Click **Deploy** to redeploy your Cloud Function to run as the
135+
updated service account.
136+
130137
7. Open the web app at: `https://<YOUR_FIREBASE_PROJECT_ID>.web.app`

0 commit comments

Comments
 (0)