Skip to content

Commit 1cf11b1

Browse files
authored
Add doc for authN scenarios (Azure#500)
1 parent 9232fa6 commit 1cf11b1

21 files changed

+456
-2
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* [**Microsoft.Azure.Functions.Worker.Extensions.OpenApi**](docs/openapi-out-of-proc.md)
1717
* [**Microsoft.Azure.WebJobs.Extensions.OpenApi**](docs/openapi-in-proc.md)
1818
* [**Microsoft.Azure.WebJobs.Extensions.OpenApi.Core**](docs/openapi-core.md)
19+
* [**Securing Azure Functions Endpoints through OpenAPI Auth**](docs/openapi-auth.md): This document shows many various scenarios to add authN features including the built-in features and OAuth2 auth flows.
1920
* [**Azure Functions v1 Support**](docs/azure-functions-v1-support.md): This document shows how to support Azure Functions v1 runtime with this OpenAPI extension.
2021
* [**Integrating OpenAPI-enabled Azure Functions to Azure API Management**](docs/integrate-with-apim.md): This document shows how to integrate the Azure Functions application with [Azure API Management](https://docs.microsoft.com/azure/api-management/api-management-key-concepts?WT.mc_id=dotnet_0000_juyoo), via this OpenAPI extension.
2122
<!-- * [**Integrating OpenAPI-enabled Azure Functions to Power Platform**](docs/integrate-with-powerplatform.md): This document shows how to integrate the Azure Functions application with [Power Platform](https://powerplatform.microsoft.com/?WT.mc_id=dotnet_0000_juyoo), via this OpenAPI extension. -->
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

docs/openapi-auth.md

+452
Large diffs are not rendered by default.

docs/openapi.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -324,8 +324,7 @@ if (!auth.IsNullOrDefault())
324324
}
325325

326326
// Out-Of-Process Worker
327-
var auth = await this._context
328-
.SetApplicationAssemblyAsync(fi.Directory.FullName, appendBin: false)
327+
var auth = await context.SetApplicationAssemblyAsync(fi.Directory.FullName, appendBin: false)
329328
.AuthorizeAsync(request)
330329
.ConfigureAwait(false);
331330
if (!auth.IsNullOrDefault())
@@ -337,3 +336,5 @@ if (!auth.IsNullOrDefault())
337336
return response;
338337
}
339338
```
339+
340+
There are more authN scenarios described in this document, [Securing Azure Functions Endpoints through OpenAPI Auth](./openapi-auth.md). Take a look for more details.

0 commit comments

Comments
 (0)