Azure Storage
45 sites
Security covered
Drupal 8–11
This project integrates your Drupal site with Microsoft Azure Storage services, allowing you to manage blobs, tables, and queues. It provides a client interface to easily interact with Azure's storage features, including sending messages to storage queues.
This project provides an easy integration with Microsoft Azure Storage services (blobs, tables and queues)..
GitHub mirror: https://github.com/baikho/drupal-azure_storage
Usage
/** @var \Drupal\azure_storage\AzureStorageClientInterface $storage_client */
$storage_client = \Drupal::service('azure_storage.client');
Storage Queue Service examples
// Simple usage.
$storage_queue_service = $storage_client->getStorageQueueService();
// Or with a dedicated connection string.
$storage_queue_service = $storage_client
->setStorageQueueService($connection_string)
->getStorageQueueService();
// Send a message.
$storage_queue_service->createMessage('queue_name', 'message');
Depends on
Dependencies of the latest stable release
Required by
Tracked projects that depend on this one
No tracked projects depend on this one yet.
Activity
Releases
| Version | Type | Core | Notes | Release date | |
|---|---|---|---|---|---|
| 2.0.3 | Stable | 8–11 | Drupal 11 compatibility | Oct 17, 2025 |