@k6-contrib/fields-azure
TypeScript icon, indicating that this package has built-in type declarations

6.0.0 • Public • Published

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 }),
  },
});

Readme

Keywords

none

Package Sidebar

Install

npm i @k6-contrib/fields-azure

Weekly Downloads

175

Version

6.0.0

License

MIT

Unpacked Size

130 kB

Total Files

34

Last publish

Collaborators

  • gautamsi