2019-09-13 14:37:29 +02:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Secret
|
|
|
|
metadata:
|
|
|
|
name: my-secret-456
|
|
|
|
namespace: default
|
|
|
|
type: Opaque
|
|
|
|
data:
|
|
|
|
client_id: MDA5MDA5MDA=
|
|
|
|
client_secret: czNjUjM3cDRzc1ZWMHJEMTIzNA==
|
|
|
|
---
|
2020-01-02 20:22:27 +01:00
|
|
|
apiVersion: hydra.ory.sh/v1alpha1
|
2019-09-13 14:37:29 +02:00
|
|
|
kind: OAuth2Client
|
|
|
|
metadata:
|
|
|
|
name: my-oauth2-client-2
|
|
|
|
namespace: default
|
|
|
|
spec:
|
|
|
|
grantTypes:
|
|
|
|
- client_credentials
|
|
|
|
- implicit
|
|
|
|
- authorization_code
|
|
|
|
- refresh_token
|
|
|
|
responseTypes:
|
|
|
|
- id_token
|
|
|
|
- code
|
|
|
|
- token
|
|
|
|
scope: "read write"
|
|
|
|
secretName: my-secret-456
|
2019-11-14 01:11:13 -07:00
|
|
|
# these are optional
|
|
|
|
redirectUris:
|
|
|
|
- https://client/account
|
|
|
|
- http://localhost:8080
|
2020-06-08 12:09:32 +02:00
|
|
|
postLogoutRedirectUris:
|
|
|
|
- https://client/logout
|
2020-02-01 14:26:22 +01:00
|
|
|
audience:
|
|
|
|
- audience-a
|
|
|
|
- audience-b
|
2021-05-13 13:50:21 +02:00
|
|
|
hydraAdmin: {}
|
2019-11-26 17:52:38 +01:00
|
|
|
tokenEndpointAuthMethod: client_secret_basic
|