This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 370
/
TestConfigurationsTemplate.xml
70 lines (64 loc) · 4.21 KB
/
TestConfigurationsTemplate.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<TestConfigurations>
<TargetTestTenant>ProductionTenant</TargetTestTenant>
<TargetPremiumBlobTenant>PremiumBlobTenant</TargetPremiumBlobTenant>
<TargetOauthTenant>OauthTenant</TargetOauthTenant>
<TenantConfigurations>
<TenantConfiguration>
<TenantName>DevStore</TenantName>
<TenantType>DevStore</TenantType>
<AccountName>devstoreaccount1</AccountName>
<AccountKey>Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==</AccountKey>
<BlobServiceEndpoint>http://127.0.0.1:10000/devstoreaccount1</BlobServiceEndpoint>
<QueueServiceEndpoint>http://127.0.0.1:10001/devstoreaccount1</QueueServiceEndpoint>
<TableServiceEndpoint>http://127.0.0.1:10002/devstoreaccount1</TableServiceEndpoint>
</TenantConfiguration>
<TenantConfiguration>
<TenantName>ProductionTenant</TenantName>
<TenantType>Cloud</TenantType>
<AccountName>[ACCOUNT NAME HERE]</AccountName>
<AccountKey>[ACCOUNT KEY HERE]</AccountKey>
<!-- Endpoints -->
<BlobServiceEndpoint>http://[ACCOUNT].blob.core.windows.net</BlobServiceEndpoint>
<QueueServiceEndpoint>http://[ACCOUNT].queue.core.windows.net</QueueServiceEndpoint>
<TableServiceEndpoint>http://[ACCOUNT].table.core.windows.net</TableServiceEndpoint>
<FileServiceEndpoint>http://[ACCOUNT].file.core.windows.net</FileServiceEndpoint>
<BlobServiceSecondaryEndpoint>http://[ACCOUNT]-secondary.blob.core.windows.net</BlobServiceSecondaryEndpoint>
<QueueServiceSecondaryEndpoint>http://[ACCOUNT]-secondary.queue.core.windows.net</QueueServiceSecondaryEndpoint>
<TableServiceSecondaryEndpoint>http://[ACCOUNT]-secondary.table.core.windows.net</TableServiceSecondaryEndpoint>
<EncryptionScope>[ENCRYPTION SCOPE]</EncryptionScope>
</TenantConfiguration>
<TenantConfiguration>
<TenantName>PremiumBlobTenant</TenantName>
<TenantType>Cloud</TenantType>
<AccountName>[ACCOUNT NAME HERE]</AccountName>
<AccountKey>[ACCOUNT KEY HERE]</AccountKey>
<!-- Endpoints -->
<BlobServiceEndpoint>http://[ACCOUNT].blob.core.windows.net</BlobServiceEndpoint>
<QueueServiceEndpoint>http://[ACCOUNT].queue.core.windows.net</QueueServiceEndpoint>
<TableServiceEndpoint>http://[ACCOUNT].table.core.windows.net</TableServiceEndpoint>
<FileServiceEndpoint>http://[ACCOUNT].file.core.windows.net</FileServiceEndpoint>
<BlobServiceSecondaryEndpoint>http://[ACCOUNT]-secondary.blob.core.windows.net</BlobServiceSecondaryEndpoint>
<QueueServiceSecondaryEndpoint>http://[ACCOUNT]-secondary.queue.core.windows.net</QueueServiceSecondaryEndpoint>
<TableServiceSecondaryEndpoint>http://[ACCOUNT]-secondary.table.core.windows.net</TableServiceSecondaryEndpoint>
</TenantConfiguration>
<TenantConfiguration>
<TenantName>OauthTenant</TenantName>
<TenantType>Cloud</TenantType>
<AccountName>[OAUTH ACCOUNT NAME]</AccountName>
<AccountKey>[OAUTH ACCOUNT KEY]</AccountKey>
<ActiveDirectoryApplicationId>[AAD APPLICATION ID]</ActiveDirectoryApplicationId>
<ActiveDirectoryApplicationSecret>[AAD APPLICATION SECRET]</ActiveDirectoryApplicationSecret>
<ActiveDirectoryTenantId>[AAD TENANT ID]</ActiveDirectoryTenantId>
<ActiveDirectoryAuthEndpoint>https://login.windows.net</ActiveDirectoryAuthEndpoint>
<!-- Endpoints -->
<BlobServiceEndpoint>https://[OAUTH ACCOUNT NAME].blob.core.windows.net</BlobServiceEndpoint>
<QueueServiceEndpoint>https://[OAUTH ACCOUNT NAME].queue.core.windows.net</QueueServiceEndpoint>
<TableServiceEndpoint>https://[OAUTH ACCOUNT NAME].table.core.windows.net</TableServiceEndpoint>
<FileServiceEndpoint>https://[OAUTH ACCOUNT NAME].file.core.windows.net</FileServiceEndpoint>
<BlobServiceSecondaryEndpoint>https://[OAUTH ACCOUNT NAME]-secondary.blob.core.windows.net</BlobServiceSecondaryEndpoint>
<QueueServiceSecondaryEndpoint>https://[OAUTH ACCOUNT NAME]-secondary.queue.prepord.core.windows.net</QueueServiceSecondaryEndpoint>
<TableServiceSecondaryEndpoint>https://[OAUTH ACCOUNT NAME]-secondary.table.prepord.core.windows.net</TableServiceSecondaryEndpoint>
<FileServiceSecondaryEndpoint>https://[OAUTH ACCOUNT NAME]-secondary.file.core.windows.net</FileServiceSecondaryEndpoint>
</TenantConfiguration>
</TenantConfigurations>
</TestConfigurations>