13 lines
503 B
Bash
13 lines
503 B
Bash
|
|
# Variables fed to Hurl for the OIDC integration tests.
|
||
|
|
# Mirror tests/api/test.env so the same admin-setup flow works on top
|
||
|
|
# of the OIDC-enabled server binary.
|
||
|
|
base_url=http://localhost:8087
|
||
|
|
username=admin
|
||
|
|
email=admin@example.com
|
||
|
|
# gitguardian:ignore
|
||
|
|
password=TestPassword1!
|
||
|
|
# Discovery / authorize endpoints exposed by tests/oidc/fake_idp.
|
||
|
|
# oidc-provider publishes authorize at /auth (not /authorize) by default.
|
||
|
|
oidc_issuer=http://localhost:1080
|
||
|
|
oidc_authorize_endpoint=http://localhost:1080/auth
|