0

we are using Recurly's .Net api client, it requires a custom config section like the following. Does azure functions support this?

<configsections>
<section name="recurly" type="Recurly.Configuration.Section,Recurly"/>
</configsections>

<recurly apikey="xxxxxx" subdomain="test"/>
Kumar Garapati
  • 619
  • 1
  • 10
  • 24
  • Heheh, I just started the same process. "Oh, I'll make a function to report on Recurly stuf"... "Oh".. "I guess not" – James White May 09 '17 at 00:36

2 Answers2

2

Unfortunately, custom config sections are not currently supported in Azure Functions.

Fabio Cavalcante
  • 12,328
  • 3
  • 35
  • 43
  • Fabio, are you guys planning to add support for custom config sections in Azure functions?...and if you are is it in the backlog or it's 'just ideas' for now? Thanks. – CloudDev Apr 12 '17 at 17:54
  • 1
    Yes, there are plans to support custom config files. This is still little far, but part of the runtime enhancements to support running functions out of process. – Fabio Cavalcante Apr 13 '17 at 17:51
  • Please, please add this. Functions are really, really close to being useful but have to have a way to specify the various configurations. – drewid Jul 05 '17 at 04:48
  • @FabioCavalcante: is there support for custom config sections now? – Chicago Oct 12 '17 at 21:00
1

You won't able to keep going configuring your Azure Functions in this way. All configurations are made by appsettings.json or Application Settings Blade o Azure Portal.

But, you're able to find out some interesting configurations here.