-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathexample_config.yaml
More file actions
249 lines (235 loc) · 5.37 KB
/
Copy pathexample_config.yaml
File metadata and controls
249 lines (235 loc) · 5.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
secret_management:
inline_secrets:
type: inline
allow_in_rules: true
config:
client_credentials:
client_id: test-client-id
client_secret: test-client-secret
api_key: test-api-key
basic_auth:
user_id: foo
password: bar
jwt_secrets:
type: pem
config:
path: /path/to/one.pem
tls_keys:
type: pem
config:
path: /path/to/other.pem
watch: true
other_secrets:
type: file
allow_in_rules: true
config:
path: /path/to/secrets.yaml
watch: true
serve:
port: 4468
tls:
secret:
source: tls_keys
min_version: TLS1.2
cipher_suites:
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
- TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
- TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
- TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256
trusted_proxies:
- 0.0.0.0/0
respond:
verbose: true
with:
accepted:
code: 200
authorization_error:
code: 404
authentication_error:
code: 404
log:
level: debug
format: text
metrics:
enabled: false
profiling:
enabled: true
host: 0.0.0.0
tracing:
span_processor: simple
mechanisms:
authenticators:
- id: anonymous_authenticator
type: anonymous
- id: unauthorized_authenticator
type: unauthorized
- id: kratos_session_authenticator
type: generic
config:
identity_info_endpoint:
url: http://127.0.0.1:4433/sessions/whoami
retry:
max_delay: 300ms
give_up_after: 2s
authentication_data_source:
- cookie: ory_kratos_session
principal:
attributes: "@this"
id: "identity.id"
- id: hydra_authenticator
type: oauth2_introspection
config:
metadata_endpoint:
url: http://hydra:4445/oauth2/introspect
retry:
max_delay: 300ms
give_up_after: 2s
auth:
type: basic_auth
config:
credentials:
source: inline_secrets
selector: basic_auth
assertions:
issuers:
- http://127.0.0.1:4444/
scopes:
- foo
- bar
audience:
- bla
principal:
attributes: "@this"
id: sub
- id: jwt_authenticator
type: jwt
config:
jwks_endpoint:
url: http://foo/token
method: GET
http_cache:
enabled: true
default_ttl: 5m
jwt_source:
- header: Authorization
scheme: Bearer
assertions:
audience:
- bla
scopes:
- foo
allowed_algorithms:
- ES256
issuers:
- bla
principal:
attributes: "@this"
id: "identity.id"
cache_ttl: 5m
authorizers:
- id: allow_all_authorizer
type: allow
- id: deny_all_authorizer
type: deny
- id: keto_authorizer
type: remote
config:
endpoint:
url: http://keto
method: POST
headers:
foo-bar: "{{ .Subject.ID }}"
payload: https://bla.bar
- id: attributes_based_authorizer
type: cel
config:
expressions:
- expression: "true"
contextualizers:
- id: subscription_contextualizer
type: generic
config:
endpoint:
url: http://foo.bar
method: GET
headers:
bla: bla
payload: http://foo
- id: profile_data_hydrator
type: generic
config:
endpoint:
url: http://profile
headers:
foo: bar
finalizers:
- id: jwt
type: jwt
config:
ttl: 5m
claims: |
{"user": {{ quote .Subject.ID }} }
signer:
secret:
source: jwt_secrets
- id: bla
type: header
config:
headers:
foo-bar: bla
- id: blabla
type: cookie
config:
cookies:
foo-bar: '{{ .Subject.ID }}'
error_handlers:
- id: default
type: default
- id: authenticate_with_kratos
type: redirect
config:
to: http://127.0.0.1:4433/self-service/login/browser?origin={{ .Request.URL | urlenc }}
default_rule:
execute:
- authenticator: anonymous_authenticator
- finalizer: bla
on_error:
- error_handler: authenticate_with_kratos
if: |
Error.Source == "kratos_session_authenticator" &&
type(Error) == authentication_error &&
Request.Header("Accept").contains("*/*")
providers:
file_system:
src: example_rules.yaml
watch: true
http_endpoint:
watch_interval: 5m
endpoints:
- url: http://foo.bar/rules.yaml
http_cache:
enabled: false
- url: http://bar.foo/rules.yaml
headers:
bla: bla
retry:
give_up_after: 5s
max_delay: 250ms
auth:
type: api_key
config:
name: foo
secret:
source: inline_secrets
selector: api_key
in: header
cloud_blob:
watch_interval: 2m
buckets:
- url: gs://my-bucket
prefix: service1
- url: gs://my-bucket
prefix: service2
- url: s3://my-bucket/my-rule-set
kubernetes:
auth_class: foo