2024-01-29 09:04:55 +01:00
|
|
|
vars {
|
2024-02-26 12:14:38 +01:00
|
|
|
host: http://localhost:8080
|
2024-01-29 09:04:55 +01:00
|
|
|
bearer_auth_token: your_secret_token
|
|
|
|
basic_auth_password: della
|
2024-02-26 12:14:38 +01:00
|
|
|
client_id: client_id_1
|
|
|
|
client_secret: client_secret_1
|
2024-03-04 10:51:05 +01:00
|
|
|
auth_url: http://localhost:8080/api/auth/oauth2/authorization_code/authorize
|
|
|
|
callback_url: http://localhost:8080/api/auth/oauth2/authorization_code/callback
|
|
|
|
access_token_url: http://localhost:8080/api/auth/oauth2/authorization_code/token
|
|
|
|
passwordCredentials_username: foo
|
|
|
|
passwordCredentials_password: bar
|
2024-02-26 12:14:38 +01:00
|
|
|
github_authorize_url: https://github.com/login/oauth/authorize
|
|
|
|
github_access_token_url: https://github.com/login/oauth/access_token
|
|
|
|
google_auth_url: https://accounts.google.com/o/oauth2/auth
|
|
|
|
google_access_token_url: https://accounts.google.com/o/oauth2/token
|
|
|
|
google_scope: https://www.googleapis.com/auth/userinfo.email
|
2024-01-29 09:04:55 +01:00
|
|
|
}
|
2024-02-26 12:14:38 +01:00
|
|
|
vars:secret [
|
|
|
|
github_client_secret,
|
|
|
|
github_client_id,
|
|
|
|
google_client_id,
|
|
|
|
google_client_secret,
|
|
|
|
github_authorization_code,
|
2024-03-04 10:51:05 +01:00
|
|
|
passwordCredentials_access_token,
|
|
|
|
client_credentials_access_token,
|
|
|
|
authorization_code_access_token,
|
2024-02-26 12:14:38 +01:00
|
|
|
github_access_token
|
|
|
|
]
|