Skip to content

Commit 22cdc37

Browse files
Incorporated all the suggested changes.
1 parent c267825 commit 22cdc37

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/container-apps/authentication.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
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
44
services: container-apps
55
author: craigshoemaker
66
ms.service: container-apps
@@ -26,7 +26,7 @@ For details surrounding authentication and authorization, refer to the following
2626

2727
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.
2828

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.
3030

3131
The benefits include:
3232

@@ -112,7 +112,7 @@ In the [Azure portal](https://portal.azure.com), you can edit your container app
112112
113113
## Customize sign-in and sign out
114114

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.
116116

117117
### Use multiple sign-in providers
118118

@@ -201,7 +201,7 @@ By default, a successful sign out redirects the client to the URL `/.auth/logout
201201
GET /.auth/logout?post_logout_redirect_uri=/index.html
202202
```
203203

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`.
205205

206206
URL must be hosted in the same domain when using fully qualified URLs.
207207

0 commit comments

Comments
 (0)