Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Fix export WEBHOOK in SETUP #427

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ To test your Four Keys deployment, you can generate mock data that simulates eve
1. Export your event handler URL an environment variable. This is the webhook URL that will receive events:

```sh
export WEBHOOK=`gcloud run services list --project $PROJECT_ID | grep event-handler | awk '{print $4}'`
export WEBHOOK=`gcloud run services list --project $PROJECT_ID | grep event-handler- | awk '{print $2}'`
```

1. Export your event handler secret to an environment variable. This is the secret used to authenticate events sent to the webhook:
Expand Down