pr suggestions

Signed-off-by: therynamo <theryn.groetken@gemini.com>
This commit is contained in:
therynamo
2021-11-15 10:51:36 -06:00
parent 16f7180fa2
commit 9e64a7ac1e
3 changed files with 10 additions and 0 deletions
@@ -1,5 +1,6 @@
---
'@backstage/techdocs-common': patch
'@backstage/techdocs-backend': patch
---
Allow amazon web services s3 buckets to pass an server side encryption configuration so they can publish to encrypted buckets
+1
View File
@@ -107,6 +107,7 @@ techdocs:
s3ForcePathStyle: false
# (Optional) AWS Server Side Encryption
# Defaults to undefined.
# If not set, encrypted buckets will fail to publish.
# https://docs.aws.amazon.com/AmazonS3/latest/userguide/specifying-s3-encryption.html
sse: 'aws:kms' # or AES256
+8
View File
@@ -121,6 +121,14 @@ export interface Config {
* @visibility backend
*/
s3ForcePathStyle?: boolean;
/**
* (Optional) AWS Server Side Encryption
* Defaults to undefined.
* If not set, encrypted buckets will fail to publish.
* https://docs.aws.amazon.com/AmazonS3/latest/userguide/specifying-s3-encryption.html
*/
sse: 'aws:kms' | 'AES256';
};
}
| {