@k6-contrib/fields-azure
v6.1.1
Published
Keystone6 Azure Storage File and Image Field Type
Downloads
341
Readme
Azure Storage Filed
import { AzureStorageConfig, azureStorageFile, azureStorageImage } from '@k6-contrib/fields-azure';
import 'dotenv/config';
const config: AzureStorageConfig = {
azureStorageOptions: {
account: process.env.AZURE_STORAGE_ACCOUNT_NAME,
accessKey: process.env.AZURE_STORAGE_ACCESS_KEY,
container: process.env.AZURE_STORAGE_CONTAINER,
},
};
const Post = list({
fields: {
title: text({ validation: { isRequired: true } }),
content: text(),
image: azureStorageImage({ config }),
file: azureStorageFile({ config }),
},
});