45 lines
849 B
YAML
45 lines
849 B
YAML
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Namespace
|
||
|
metadata:
|
||
|
name: custom-namespace
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Secret
|
||
|
metadata:
|
||
|
name: my-secret-123
|
||
|
namespace: custom-namespace
|
||
|
type: Opaque
|
||
|
data:
|
||
|
client_id: NDI0MjQyNDI=
|
||
|
client_secret: czNjUjM3cDRzc1ZWMHJENDMyMQ==
|
||
|
---
|
||
|
apiVersion: hydra.ory.sh/v1alpha1
|
||
|
kind: OAuth2Client
|
||
|
metadata:
|
||
|
name: my-oauth2-client-3
|
||
|
namespace: custom-namespace
|
||
|
spec:
|
||
|
grantTypes:
|
||
|
- client_credentials
|
||
|
- implicit
|
||
|
- authorization_code
|
||
|
- refresh_token
|
||
|
responseTypes:
|
||
|
- id_token
|
||
|
- code
|
||
|
- token
|
||
|
scope: "read write"
|
||
|
secretName: my-secret-123
|
||
|
# these are optional
|
||
|
redirectUris:
|
||
|
- https://client/account
|
||
|
- http://localhost:8080
|
||
|
postLogoutRedirectUris:
|
||
|
- https://client/logout
|
||
|
audience:
|
||
|
- audience-a
|
||
|
- audience-b
|
||
|
hydraAdmin: {}
|
||
|
tokenEndpointAuthMethod: client_secret_basic
|