diff --git a/pyinfra/storage/storages.py b/pyinfra/storage/storages.py new file mode 100644 index 0000000..ae5200c --- /dev/null +++ b/pyinfra/storage/storages.py @@ -0,0 +1,7 @@ +from pyinfra.storage.adapters.azure import AzureStorageAdapter +from pyinfra.storage.clients.azure import get_azure_client +from pyinfra.storage.storage import Storage + + +def get_azure_storage(connection_string=None): + return Storage(AzureStorageAdapter(get_azure_client(connection_string)))