I/O Runtime with Azure (Blobs) Storage | Community
Skip to main content
Level 2
November 19, 2020
Solved

I/O Runtime with Azure (Blobs) Storage

  • November 19, 2020
  • 1 reply
  • 1406 views

Hi, is it possible to use Azure blobs storage in a runtime web function? Nodejs does have support for it but then I try to include "var azure = require('azure-storage');" - the action fails.

And is it possible to add libraries to the runtime environment?

Thank you!

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by duynguyen_adobe

Hi @wiki - yes it is possible to connect to Azure Blob storage or any other cloud service in your Runtime action.

Adding npm libraries to your runtime action is of course possible.

The simplest way is zipping everything and deploy to your action.

However, our recommendation is creating Project Firefly apps which take care of the npm dependencies and deployment.

1 reply

duynguyen_adobeAdobe EmployeeAccepted solution
Adobe Employee
November 19, 2020

Hi @wiki - yes it is possible to connect to Azure Blob storage or any other cloud service in your Runtime action.

Adding npm libraries to your runtime action is of course possible.

The simplest way is zipping everything and deploy to your action.

However, our recommendation is creating Project Firefly apps which take care of the npm dependencies and deployment.

wikiAuthor
Level 2
November 19, 2020

Great, thanks a lot! I am also considering Project Firefly.