#Azure blob base url? Which one to use?

1 messages · Page 1 of 1 (latest)

tiny path
#

https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/data-sources/storage_account

Which url from here I need to set as baseUrl for blob storage adapter?
https://www.npmjs.com/package/@payloadcms/plugin-cloud-storage#azure-blob-storage-adapter

import { azureBlobStorageAdapter } from '@payloadcms/plugin-cloud-storage/azure'

const adapter = azureBlobStorageAdapter({
  connectionString: process.env.AZURE_STORAGE_CONNECTION_STRING,
  containerName: process.env.AZURE_STORAGE_CONTAINER_NAME,
  allowContainerCreate: process.env.AZURE_STORAGE_ALLOW_CONTAINER_CREATE === 'true',
  baseURL: process.env.AZURE_STORAGE_ACCOUNT_BASEURL,
})
swift raptorBOT
tiny path