Skip to content
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
13 changes: 13 additions & 0 deletions google-cloud-run/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,19 @@ The Cloud Run service for the SCIM bridge will be configured to mount volume usi
```sh
gcloud secrets create scimsession --data-file=$HOME/scimsession
```
> [!IMPORTANT]
> Your `scimsession` file MUST NOT contain a `domain` field.
> If it contains a domain, the SCIM bridge will automatically attempt to start on port 8443 with Let's Encrypt enabled to provision an SSL certificate.
>
> ```diff
> {
> "version": "2",
> ...
> "deviceUuid": "EXAMPLE_DEVICE_UUID",
> - "domain": "scim.example.com"
> }
> ```


> [!TIP]
> If the file was not saved using the above suggested values, replace `$HOME/scimsession` with the actual path to the
Expand Down