-
-
Save justinyoo/13175c98077bda10c3fef3e721ec1bbe to your computer and use it in GitHub Desktop.
Azure Function Proxies for Mocking
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"apiVersion": "2015-08-01", | |
"type": "Microsoft.Web/sites", | |
"name": "my-function-app", | |
"location": "[resourceGroup().location]", | |
"kind": "functionapp", | |
... | |
"resources": [ | |
{ | |
"apiVersion": "2015-08-01", | |
"type": "config", | |
"name": "appsettings", | |
... | |
"properties": { | |
... | |
// Add this key with this value to enable Azure Function Proxies. | |
"ROUTING_EXTENSION_VERSION": "~0.2" | |
} | |
}, | |
... | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment