Merge pull request #7827 from andrewthauer/optional-techdocs-aws-config

fix: make techdocs s3 credentials optional in config schema
This commit is contained in:
Patrik Oldsberg
2021-10-29 10:50:30 +02:00
committed by GitHub
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