feat(techdocs-common): update Azure Blob Storage

This commit is contained in:
vitorgrenzel
2021-01-22 16:09:06 -03:00
committed by Tiago A. Simões
parent 2d8d7697d6
commit 0be9694aa6
7 changed files with 96 additions and 59 deletions
+7 -7
View File
@@ -128,24 +128,24 @@ export interface Config {
*/
azureBlobStorage?: {
/**
* (Optional) Credentials used to access a storage container.
* If not set, environment variables will be used to authenticate.
* https://docs.microsoft.com/en-us/azure/storage/common/storage-auth?toc=/azure/storage/blobs/toc.json
* (Required) Credentials used to access a storage container.
* @visibility secret
*/
credentials?: {
credentials: {
/**
* Account access name
* attr: 'account' - accepts a string value
* @visibility secret
*/
account: string;
accountName: string;
/**
* Account secret primary key
* (Optional) Account secret primary key
* If not set, environment variables will be used to authenticate.
* https://docs.microsoft.com/en-us/azure/storage/common/storage-auth?toc=/azure/storage/blobs/toc.json
* attr: 'accountKey' - accepts a string value
* @visibility secret
*/
accountKey: string;
accountKey?: string;
};
/**
* (Required) Cloud Storage Container Name