Azure functions allows us to enable cors and give a specific set of urls that are allowed access. We can also enter the wildcard character (*) which allows all domains to have access to the function.
Is there a way to add an entry into the cors setting to allow all subdomains of a particular domain access to the function rather than explicitly setting each subdomain? We have tried adding an entry such as http://*.example.com to see if that would allow the subdomains to get access, but it doesn't seem to be working. We were wondering if there was any other way to accomplish this.
Suggestions are welcome and appreciated.
Thanks much in advance.