forked from Azure-Samples/key-vault-dotnet-recovery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config
More file actions
15 lines (13 loc) · 672 Bytes
/
app.config
File metadata and controls
15 lines (13 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="TenantId" value="** tenant id **" />
<add key="VaultName" value="** vault name here **" />
<add key="VaultLocation" value="** vault location **" />
<add key="ResourceGroupName" value="** resource group name **" />
<add key="SubscriptionId" value="** subscription id **" />
<add key="SPObjectId" value="** object id of the service principal **" />
<add key="SPSecret" value="** client secret of the AD application **" />
<add key="ApplicationId" value="** AD application id corresponding to the service principal **" />
</appSettings>
</configuration>