0

I need to deploy an Asp.Net Core web application in Azure Marketplace.

I saw the following sample https://github.com/Azure/azure-managedapp-samples/tree/master/Managed%20Application%20Sample%20Packages/201-managed-web-app

Is there a way to let the user create/edit some App Settings fields on the portal and to read those App Settings in the web app hosted inside de VM?

Thank you!

Murilo Maciel Curti
  • 2,677
  • 1
  • 21
  • 26

1 Answers1

0

Yes, you would take these fields in as part of your CreateUIDefinition and you could run these using the Template Deployment Scripts preview.

Another option could be to use Azure Custom Providers and trigger an Azure Function. This could be reused if you wanted to allow the user to call the Custom Provider later with your ViewDefinition's Portal UX to update any of this information collected later via a Custom Action.

Arghya Sadhu
  • 41,002
  • 9
  • 78
  • 107