summaryrefslogtreecommitdiffstats
path: root/cps-rest
diff options
context:
space:
mode:
authorJosephKeenan <joseph.keenan@est.tech>2022-10-20 10:33:24 +0100
committerJosephKeenan <joseph.keenan@est.tech>2022-10-24 16:22:06 +0100
commit1a65023937c209ae05c8e84093376b737e78320c (patch)
tree352635a2f6291167568bafe0b6be26408aa5ff65 /cps-rest
parentb24639de32b2c89346d9888ba0acc9443babb2be (diff)
[NCMP] Add Basic Auth to OpenAPI Definitions
-Adding basic auth to OpenAPI definitions Issue-ID: CPS-1350 Signed-off-by: JosephKeenan <joseph.keenan@est.tech> Change-Id: Iab677f2abc07eed8c3e2910191b15ba27028ee88
Diffstat (limited to 'cps-rest')
-rw-r--r--cps-rest/docs/openapi/openapi.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/cps-rest/docs/openapi/openapi.yml b/cps-rest/docs/openapi/openapi.yml
index 76bdb80c2..290bbf44b 100644
--- a/cps-rest/docs/openapi/openapi.yml
+++ b/cps-rest/docs/openapi/openapi.yml
@@ -37,6 +37,11 @@ info:
servers:
- url: /cps/api
+components:
+ securitySchemes:
+ basicAuth:
+ type: http
+ scheme: basic
tags:
- name: cps-admin
description: cps Admin
@@ -70,3 +75,6 @@ paths:
/v1/dataspaces/{dataspace-name}/anchors/{anchor-name}/nodes/query:
$ref: 'cpsQuery.yml#/nodesByDataspaceAndAnchorAndCpsPath'
+
+security:
+ - basicAuth: [] \ No newline at end of file