feat(repositories): add google cloud storage support

This commit is contained in:
Nicolas Meienberger
2025-11-10 21:04:08 +01:00
parent d31fa8d464
commit e98c0af8ca
6 changed files with 74 additions and 1 deletions

View File

@@ -22,6 +22,9 @@ const encryptConfig = async (config: RepositoryConfig): Promise<RepositoryConfig
encryptedConfig.accessKeyId = await cryptoUtils.encrypt(config.accessKeyId);
encryptedConfig.secretAccessKey = await cryptoUtils.encrypt(config.secretAccessKey);
break;
case "gcs":
encryptedConfig.credentialsJson = await cryptoUtils.encrypt(config.credentialsJson);
break;
}
return encryptedConfig as RepositoryConfig;