The following snippet extracts key value pairs from the AppSettings section of an app config file:
let appSettings = ConfigurationManager.AppSettings
let serviceKeys = ConfigurationManager.AppSettings.AllKeys
|> Seq.filter (fun k -> k.ToString().EndsWith "Fn")
|> Seq.map (fun k -> (k,appSettings.GetValues(k).First()))
<appSettings>
<add key="MyAzureFn" value="some_value_1"/>
<add key="MyOtherAzureFn" value="some_value_2"/>
<add key="MyThirdAzureFn" value="some_value_3"/>
</appSettings>