You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/container-apps/authentication.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Authentication and authorization in Azure Container Apps
3
-
description: Use built-in authentication in Azure Container Apps.
3
+
description: Use built-in authentication in Azure Container Apps
4
4
services: container-apps
5
5
author: craigshoemaker
6
6
ms.service: container-apps
@@ -26,7 +26,7 @@ For details surrounding authentication and authorization, refer to the following
26
26
27
27
You're not required to use this feature for authentication and authorization. You can use the bundled security features in your web framework of choice, or you can write your own utilities. However, implementing a secure solution for authentication (signing-in users) and authorization (providing access to secure data) can take significant effort. You must make sure to follow industry best practices and standards and keep your implementation up to date.
28
28
29
-
With the built-in authentication feature for Container Apps, you can save you time and effort by providing out-of-the-box authentication with federated identity providers, allowing you to focus on the rest of your application.
29
+
The built-in authentication feature for Container Apps saves you time and effort by providing out-of-the-box authentication with federated identity providers. These features allow you to focus more time developing your application, and less time on building security systems.
30
30
31
31
The benefits include:
32
32
@@ -112,7 +112,7 @@ In the [Azure portal](https://portal.azure.com), you can edit your container app
112
112
113
113
## Customize sign-in and sign out
114
114
115
-
Container Apps Authentication provides built-in endpoints for sign in and signs out. When the feature is enabled, these endpoints are available under the `/.auth` route prefix on your container app.
115
+
Container Apps Authentication provides built-in endpoints for sign in and sign out. When the feature is enabled, these endpoints are available under the `/.auth` route prefix on your container app.
116
116
117
117
### Use multiple sign-in providers
118
118
@@ -201,7 +201,7 @@ By default, a successful sign out redirects the client to the URL `/.auth/logout
201
201
GET /.auth/logout?post_logout_redirect_uri=/index.html
202
202
```
203
203
204
-
It recommends that you[encode](https://wikipedia.org/wiki/Percent-encoding) the value of `post_logout_redirect_uri`.
204
+
Make sure to[encode](https://wikipedia.org/wiki/Percent-encoding) the value of `post_logout_redirect_uri`.
205
205
206
206
URL must be hosted in the same domain when using fully qualified URLs.
0 commit comments