-
Notifications
You must be signed in to change notification settings - Fork 492
/
Copy pathsecurity-proxy-auth.yaml
740 lines (735 loc) · 23.9 KB
/
security-proxy-auth.yaml
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
openapi: 3.1.0
info:
title: Edge Foundry - Proxy Authentication API
description: This is the definition of the API for the Security Proxy Auth service in the EdgeX Foundry IOT microservice platform.
version: 4.0.0
servers:
- url: http://localhost:59842/api/v3
description: URL for local development and testing
components:
schemas:
BaseResponse:
description: "Defines basic properties which all use-case specific response DTO instances should support"
type: object
properties:
apiVersion:
description: "A version number shows the API version in DTOs."
type: string
example: v3
requestId:
description: "Uniquely identifies the request that resulted in this response."
type: string
format: uuid
example: "e6e8a2f4-eb14-4649-9e2b-175247911369"
message:
description: "A field that can contain a free-form message, such as an error message."
type: string
statusCode:
description: "A numeric code signifying the operational status of the response."
type: integer
ErrorResponse:
allOf:
- $ref: '#/components/schemas/BaseResponse'
description: "A response type for returning a generic error to the caller."
type: object
PingResponse:
type: object
properties:
apiVersion:
description: "A version number shows the API version in DTOs."
type: string
timestamp:
description: "Outputs the current server timestamp in RFC1123 format"
example: "Mon, 02 Jan 2006 15:04:05 MST"
type: string
serviceName:
description: "Outputs the name of the service the response is from"
type: string
VersionResponse:
description: "A response returned from the /version endpoint whose purpose is to report out the latest version supported by the service."
type: object
properties:
apiVersion:
description: "A version number shows the API version in DTOs."
type: string
version:
description: "The latest version supported by the service."
type: string
serviceName:
description: "Outputs the name of the service the response is from"
type: string
ConfigResponse:
description: "Provides a response containing the configuration for the targeted service."
type: object
properties:
apiVersion:
description: "A version number shows the API version in DTOs."
type: string
serviceName:
description: "Outputs the name of the service the response is from"
type: string
config:
description: "An object containing the service's configuration. Please refer the configuration documentation of each service for more details at [EdgeX Foundry Documentation](https://docs.edgexfoundry.org)."
type: object
BaseRequest:
description: "Defines basic properties which all use-case specific request DTO instances should support."
type: object
properties:
requestId:
description: "Uniquely identifies this request. For implementation, recommend this value be generated by the type's constructor."
type: string
format: uuid
example: "e6e8a2f4-eb14-4649-9e2b-175247911369"
apiVersion:
description: "A version number shows the API version in DTOs."
type: string
example: "v3"
SecretRequest:
allOf:
- $ref: '#/components/schemas/BaseRequest'
description: Defines the secret data to be stored
type: object
properties:
secretName:
description: Specifies the location within the secret to store
type: string
example: "credentials"
secretData:
description: A list of the key/value pairs of secret data to store
type: array
items:
$ref: '#/components/schemas/SecretDataKeyValue'
SecretDataKeyValue:
description: Defines a key/value pair of the secret data
type: object
properties:
key:
description: The key to identify the secret
type: string
example: "username"
value:
description: The value of the secret
type: string
example: "mqtt-user"
required:
- key
- value
AddKeyDataRequest:
allOf:
- $ref: '#/components/schemas/BaseRequest'
description: "A request for ingesting a new key"
type: object
properties:
keyData:
$ref: '#/components/schemas/KeyData'
required:
- keyData
KeyData:
description: "Indicates the information of a key."
properties:
issuer:
description: "The issuer of the key"
type: string
type:
description: "The type of the key. Default value verification if it is empty."
enum:
- verification
- signing
key:
description: "The key content"
type: string
required:
- issuer
- password
- role
GetKeyDataResponse:
type: object
properties:
apiVersion:
description: "A version number shows the API version in DTOs."
type: string
keyData:
$ref: '#/components/schemas/KeyDataResponse'
KeyDataResponse:
type: object
properties:
issuer:
description: "The issuer of the key"
type: string
type:
description: "The type of the key"
type: string
key:
description: "The key content"
type: string
parameters:
correlatedRequestHeader:
in: header
name: X-Correlation-ID
description: "A unique identifier correlating a request to its associated response, facilitating tracing through being included on requests originating from the initiating request."
schema:
type: string
format: uuid
required: true
example: "14a42ea6-c394-41c3-8bcd-a29b9f5e6835"
OriginalRequestUriHeader:
in: header
name: X-Forwarded-Uri
required: false
description: original request URI
schema:
type: string
OriginalRequestMethodHeader:
in: header
name: X-Forwarded-Method
required: false
description: original request method
schema:
type: string
BearerTokenHeader:
in: header
name: Authorization
required: true
description: Bearer token authentication
schema:
type: string
example: "Bearer eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJiOWQ0ZDhhYi0wMzk5LTQ0ZmYtYWQ5Ni1hNGUyMTE3MmM1YzIiLCJleHAiOjE2NTcwODQ5OTksIm5iZiI6MTY1NzA4MTM5OSwiaWF0IjoxNjU3MDgxMzk5fQ.WvuSULWKfROzygV-V1LobsjlK5aU88CRNnOgabfzdB6bD5IK2HXw8tD3XLL3xOfTBNnyQkRnqFVbZJ9zkyW_Ng"
offsetParam:
in: query
name: offset
required: false
schema:
type: integer
minimum: 0
default: 0
description: "The number of items to skip before starting to collect the result set."
limitParam:
in: query
name: limit
required: false
schema:
type: integer
minimum: -1
default: 20
description: "The numbers of items to return. Specify -1 will return all remaining items after offset. The maximum will be the MaxResultCount as defined in the configuration of service."
headers:
correlatedResponseHeader:
description: "A response header that returns the unique correlation ID used to initiate the request."
schema:
type: string
format: uuid
example: "14a42ea6-c394-41c3-8bcd-a29b9f5e6835"
examples:
RolePolicyExample:
value:
apiVersion: v3
rolePolicy:
role: device-cmd-dev
description: The device command developer role which can execute all the device commands
accessPolicies:
- path: /core-command/*
httpMethods:
- GET
- PUT
effect: allow
- path: /core-metadata/api/v3/device/*
httpMethods:
- GET
- PUT
- POST
effect: deny
GetRolePolicyExample:
value:
apiVersion: v3
statusCode: 200
rolePolicy:
id: 2faeb932-fc82-4c3c-8de5-4f5a191240ec
role: device-cmd-dev
description: The device command developer role which can execute all the device commands
created: 1600927134931
modified: 1600927134931
accessPolicies:
- path: /core-command/*
httpMethods:
- GET
- PUT
effect: allow
- path: /core-metadata/api/v3/device/*
httpMethods:
- GET
- PUT
- POST
effect: deny
MultiRolePolicyExample:
value:
apiVersion: v3
statusCode: 200
totalCount: 1
rolePolicies:
- id: 2faeb932-fc82-4c3c-8de5-4f5a191240ec
role: device-cmd-dev
created: 1600927134931
modified: 1600927134931
accessPolicies:
- path: /core-command/*
httpMethods:
- GET
- PUT
- path: /core-metadata/api/v3/device/*
httpMethods:
- GET
- PUT
- POST
effect: allow
400Example:
value:
apiVersion: "v3"
requestId: "73f0932c-0148-11eb-adc1-0242ac120002"
statusCode: 400
message: "Bad Request"
401Example:
value:
apiVersion: "v3"
requestId: "73f0932c-0148-11eb-adc1-0242ac120002"
statusCode: 401
message: "Unauthorized"
403Example:
value:
apiVersion: "v3"
requestId: "73f0932c-0148-11eb-adc1-0242ac120002"
statusCode: 403
message: "Forbidden"
404Example:
value:
apiVersion: "v3"
requestId: "84c9489c-0148-11eb-adc1-0242ac120002"
statusCode: 404
message: "Not Found"
409Example:
value:
apiVersion: "v3"
statusCode: 409
message: "Data Duplicate"
416Example:
value:
apiVersion: "v3"
statusCode: 416
message: "Range Not Satisfiable"
500Example:
value:
apiVersion: "v3"
statusCode: 500
message: "Interval Server Error"
AddUserExample:
value:
- apiVersion: v3
user:
name: bob
displayName: Bob Myers
description: A device user
password: password
roles:
- device-admin
LoginRequestExample:
value:
username: "alice"
password: "***************"
LoginRespExample:
value:
apiVersion: v3
statusCode: 200
jwt: eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJleHAiOjE3MzA4ODIxNjIsImlzcyI6IklPVGVjaCIsInRva2VuX2lkIjoiZTcxMDMwYzQtZDgxMS00Y2Y1LThmMjktYTg3YWE2ZDY0NTRkIn0.TPlUmcwAkWUC3_WRFC1Pp3sjbG4EmXLXrqow387et0N3z9tNZ-zqH6jfNzOATcj5I7-Wrkp-T0fFfbhGidPYBg
RefreshTokenRespExample:
value:
apiVersion: v3
statusCode: 200
jwt: eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJleHAiOjE3MzA4ODIxNjIsImlzcyI6IklPVGVjaCIsInRva2VuX2lkIjoiZTcxMDMwYzQtZDgxMS00Y2Y1LThmMjktYTg3YWE2ZDY0NTRkIn0.TPlUmcwAkWUC3_WRFC1Pp3sjbG4EmXLXrqow387et0N3z9tNZ-zqH6jfNzOATcj5I7-Wrkp-T0fFfbhGidPYBg
GetUserExample:
value:
apiVersion: v3
statusCode: 200
user:
name: bob
displayName: Bob Myers
description: A device user
roles:
- device-admin
MultiAddUserExample:
value:
- apiVersion: "v3"
requestId: "592b98aa-1e4e-46f2-992a-9e6ef844270f"
statusCode: 201
- apiVersion: "v3"
requestId: "8e025b94-1512-4ec4-a9bd-3111cb278379"
statusCode: 400
message: "role policy 'not-exists-role' not exists"
- apiVersion: "v3"
requestId: "8e025b94-1512-4ec4-a9bd-3111cb278379"
statusCode: 409
message: "user name 'user' already exists"
MultiUpdateUserExample:
value:
- apiVersion: "v3"
requestId: "592b98aa-1e4e-46f2-992a-9e6ef844270f"
statusCode: 200
- apiVersion: "v3"
requestId: "8e025b94-1512-4ec4-a9bd-3111cb278379"
statusCode: 400
message: "role policy 'not-exists-role' not exists"
- apiVersion: "v3"
requestId: "8e025b94-1512-4ec4-a9bd-3111cb278379"
statusCode: 404
message: "user 'user' does not exist"
MultiUserExample:
value:
apiVersion: v3
statusCode: 200
totalCount: 2
users:
- name: bob
displayName: Bob Myers
description: A device user
roles:
- device-admin
- name: alice
displayName: Alice Masur
description: A device profile user
roles:
- device-profile-admin
MultiAuthRouteRequestExample:
value:
- apiVersion: v3
authRoute:
path: /core-metadata/api/v3/device/*
httpMethod: GET
- apiVersion: v3
authRoute:
path: /core-data/api/v3/event
httpMethod: POST
MultiAuthRouteResponseExample:
value:
apiVersion: v3
statusCode: 200
authResponses:
- path: /core-metadata/api/v3/device/*
httpMethod: GET
authResult: true
- path: /core-data/api/v3/event
httpMethod: POST
authResult: false
AddKeyDataExample:
value:
apiVersion: v3
keyData:
issuer: bob
type: verification
key: g2ymJgt6hlYk92My89wpeYL3yH0WoiM9
GetKeyDataExample:
value:
apiVersion: v3
statusCode: 200
keyData:
issuer: bob
type: verification
key: g2ymJgt6hlYk92My89wpeYL3yH0WoiM9
paths:
/auth:
parameters:
- $ref: '#/components/parameters/BearerTokenHeader'
- $ref: '#/components/parameters/OriginalRequestUriHeader'
- $ref: '#/components/parameters/OriginalRequestMethodHeader'
get:
summary: Authenticate the user
description: |
Authenticate the user based on the JWT provided in the headers.
responses:
'204':
description: "The user is authorized with the requested URI and the operation."
'401':
description: "Unauthorized"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
401Example:
$ref: '#/components/examples/401Example'
'403':
description: "Forbidden"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
403Example:
$ref: '#/components/examples/403Example'
/key:
post:
summary: Add a new key
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/AddKeyDataRequest'
examples:
addKeyDataExample:
$ref: '#/components/examples/AddKeyDataExample'
responses:
'201':
description: "Created"
headers:
X-Correlation-ID:
$ref: '#/components/headers/correlatedResponseHeader'
content:
application/json:
schema:
$ref: '#/components/schemas/BaseResponse'
example:
apiVersion: "v3"
statusCode: 201
'400':
description: "Bad Request"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
400Example:
$ref: '#/components/examples/400Example'
'409':
description: "Conflicted"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
409Example:
$ref: '#/components/examples/409Example'
'500':
description: "Internal Server Error"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
500Example:
$ref: '#/components/examples/500Example'
/key/verification/issuer/{issuer}:
parameters:
- name: issuer
in: path
required: true
schema:
type: string
description: "Specifies the issuer of the key"
get:
summary: Get a key information by the specified issuer
responses:
'200':
description: "OK"
headers:
X-Correlation-ID:
$ref: '#/components/headers/correlatedResponseHeader'
content:
application/json:
schema:
$ref: '#/components/schemas/GetKeyDataResponse'
examples:
LoginRespExample:
$ref: '#/components/examples/GetKeyDataExample'
'400':
description: "Bad Request"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
400Example:
$ref: '#/components/examples/400Example'
'404':
description: "Not Found"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
404Example:
$ref: '#/components/examples/404Example'
'500':
description: "Internal Server Error"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
500Example:
$ref: '#/components/examples/500Example'
/secret:
parameters:
- $ref: '#/components/parameters/correlatedRequestHeader'
post:
summary: Stores a secret to the secure Secret Store
requestBody:
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/SecretRequest'
required: true
responses:
'201':
description: "Created"
headers:
X-Correlation-ID:
$ref: '#/components/headers/correlatedResponseHeader'
content:
application/json:
schema:
$ref: '#/components/schemas/BaseResponse'
'400':
description: "Invalid request."
headers:
X-Correlation-ID:
$ref: '#/components/headers/correlatedResponseHeader'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
400Example:
$ref: '#/components/examples/400Example'
'500':
description: "An unexpected error happened on the server."
headers:
X-Correlation-ID:
$ref: '#/components/headers/correlatedResponseHeader'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
500Example:
$ref: '#/components/examples/500Example'
/config:
get:
summary: "Returns the current configuration of the service."
responses:
'200':
description: "OK"
headers:
X-Correlation-ID:
$ref: '#/components/headers/correlatedResponseHeader'
content:
application/json:
schema:
$ref: '#/components/schemas/ConfigResponse'
example:
apiVersion: "v3"
config:
Writeable:
LogLevel: "INFO"
Databases:
Primary:
Type: "redisdb"
Timeout: 5000
Host: "edgex-redis"
Port: 6379
Name: "proxy-auth"
Registry:
Host: "localhost"
Port: 8500
Type: "consul"
Service:
HealthCheckInterval: "10s"
Host: "proxy-auth"
Port: 59842
SeverBindAddr: ""
StartupMsg: "This is the Core Data Microservice"
MaxResultCount: 50000
MaxRequestSize: 0
RequestTimeout: "5s"
SecretStore:
Type: "vault"
Host: "edgex-vault"
Port: 8200
Path: "security-proxy-auth"
Protocol: "http"
Namespace: ""
RootCaCertPath: ""
ServerName: ""
Authentication:
AuthType: "X-Vault-Token"
AuthToken: ""
TokenFile: "/tmp/edgex/secrets/security-proxy-auth/secrets-token.json"
serviceName: "proxy-auth"
'500':
description: "Interval Server Error"
headers:
X-Correlation-ID:
$ref: '#/components/headers/correlatedResponseHeader'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
500Example:
$ref: '#/components/examples/500Example'
/ping:
get:
summary: "A simple 'ping' endpoint that can be used as a service healthcheck"
responses:
'200':
description: "OK"
headers:
X-Correlation-ID:
$ref: '#/components/headers/correlatedResponseHeader'
content:
application/json:
schema:
$ref: '#/components/schemas/PingResponse'
example:
apiVersion: "v3"
timestamp: "Mon, 02 Jan 2006 15:04:05 MST"
serviceName: "proxy-auth"
'500':
description: "Interval Server Error"
headers:
X-Correlation-ID:
$ref: '#/components/headers/correlatedResponseHeader'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
500Example:
$ref: '#/components/examples/500Example'
/version:
get:
summary: "A simple 'version' endpoint that will return the current version of the service"
responses:
'200':
description: "OK"
headers:
X-Correlation-ID:
$ref: '#/components/headers/correlatedResponseHeader'
content:
application/json:
schema:
$ref: '#/components/schemas/VersionResponse'
example:
apiVersion: "v3"
version: "master"
serviceName: "proxy-auth"
'500':
description: "Interval Server Error"
headers:
X-Correlation-ID:
$ref: '#/components/headers/correlatedResponseHeader'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
500Example:
$ref: '#/components/examples/500Example'