fix: make techdocs s3 credentials optional in config schema

Signed-off-by: Andrew Thauer <athauer@wealthsimple.com>
This commit is contained in:
Andrew Thauer
2021-10-28 17:56:59 -04:00
parent 3db0cb3683
commit b45607a2ec
2 changed files with 7 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-techdocs-backend': patch
---
Make techdocs s3 publisher credentials config schema optional.
+2 -2
View File
@@ -83,12 +83,12 @@ export interface Config {
* User access key id
* @visibility secret
*/
accessKeyId: string;
accessKeyId?: string;
/**
* User secret access key
* @visibility secret
*/
secretAccessKey: string;
secretAccessKey?: string;
/**
* ARN of role to be assumed
* @visibility backend