https://pulumi.com logo
m

magnificent-petabyte-57952

09/16/2019, 10:04 PM
Hello everybody, I’ve got a quick question: how could I run pulumi in mode that will show me everything zipped for an Azure function before upload. Something like
.serverless
folder with serverless framework. thanks!
t

tall-librarian-49374

09/17/2019, 6:58 AM
Hi Leo, nice to see you here!
The package is produced in-memory, so I can't think of a better way other than dumping its url into the output and then downloading it back:
Copy code
export const zip = fn.functionApp.appSettings.apply(s => s!["WEBSITE_RUN_FROM_PACKAGE"]);
👍 1