Skip to content

Commit e440a33

Browse files
authored
Merge pull request #230015 from diberry/diberry/0308-app-app-graph
App service app->app->graph
2 parents 89ccd7d + c759faa commit e440a33

8 files changed

+338
-19
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
services: storage, app-service-web
3+
author: rwike77
4+
manager: CelesteDG
5+
ms.service: app-service
6+
ms.topic: include
7+
ms.workload: identity
8+
ms.date: 03/09/2023
9+
ms.author: ryanwi
10+
ms.reviewer: stsoneff
11+
ms.devlang: azurecli
12+
ms.custom: azureday1
13+
ms.subservice: web-apps
14+
---
15+
16+
In the preceding steps, you created Azure resources in a resource group.
17+
18+
1. Delete the resource group by running the following command in the Cloud Shell. This command may take a minute to run.
19+
20+
21+
```azurecli-interactive
22+
az group delete --name myAuthResourceGroup
23+
```
24+
25+
26+
1. Use the authentication apps' **Client ID**, you previously found and made note of in the `Enable authentication and authorization` sections for the backend and frontend apps.
27+
1. Delete app registrations for both frontend and backend apps.
28+
29+
```azurecli-interactive
30+
# delete app - do this for both frontend and backend client ids
31+
az ad app delete <client-id>
32+
```
22.1 KB
Loading
Loading
Loading
22.2 KB
Loading

articles/app-service/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@
124124
href: tutorial-connect-app-access-microsoft-graph-as-user-javascript.md
125125
- name: App to app authentication
126126
href: tutorial-auth-aad.md
127-
128-
127+
- name: App to app to another Azure service
128+
href: tutorial-connect-app-app-graph-javascript.md
129129
- name: Isolate network traffic
130130
href: tutorial-networking-isolate-vnet.md
131131
- name: Host a RESTful API

articles/app-service/tutorial-auth-aad.md

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -334,23 +334,7 @@ if (bearerToken) {
334334

335335
## 9. Clean up resources
336336

337-
In the preceding steps, you created Azure resources in a resource group.
338-
339-
1. Delete the resource group by running the following command in the Cloud Shell. This command may take a minute to run.
340-
341-
342-
```azurecli-interactive
343-
az group delete --name myAuthResourceGroup
344-
```
345-
346-
347-
1. Use the authentication apps' **Client ID**, you previously found and made note of in the `Enable authentication and authorization` sections for the backend and frontend apps.
348-
1. Delete app registrations for both frontend and backend apps.
349-
350-
```azurecli-interactive
351-
# delete app - do this for both frontend and backend client ids
352-
az ad app delete <client-id>
353-
```
337+
[!INCLUDE [tutorial-connect-app-app-clean.md](./includes/tutorial-connect-app-app-clean.md)]
354338

355339
## Frequently asked questions
356340

articles/app-service/tutorial-connect-app-app-graph-javascript.md

Lines changed: 303 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)