@@ -54,10 +54,10 @@ public override Dictionary<string, List<EndpointData>> EndpointDataList()
54
54
Environment . GetEnvironmentVariable ( "IDENTITY_ENDPOINT" ) ;
55
55
endpoints = new List < Tuple < string , string , bool > > ( )
56
56
{
57
- new Tuple < string , string , bool > ( "Management token" , $ "identity/oauth2/token ?api-version={ CONTAINER_API_VERSION } &resource=https://management.azure.com/", true ) ,
58
- new Tuple < string , string , bool > ( "Graph token" , $ "identity/oauth2/token ?api-version={ CONTAINER_API_VERSION } &resource=https://graph.microsoft.com/", true ) ,
59
- new Tuple < string , string , bool > ( "Vault token" , $ "identity/oauth2/token ?api-version={ CONTAINER_API_VERSION } &resource=https://vault.azure.net/", true ) ,
60
- new Tuple < string , string , bool > ( "Storage token" , $ "identity/oauth2/token ?api-version={ CONTAINER_API_VERSION } &resource=https://storage.azure.com/", true )
57
+ new Tuple < string , string , bool > ( "Management token" , $ "?api-version={ CONTAINER_API_VERSION } &resource=https://management.azure.com/", true ) ,
58
+ new Tuple < string , string , bool > ( "Graph token" , $ "?api-version={ CONTAINER_API_VERSION } &resource=https://graph.microsoft.com/", true ) ,
59
+ new Tuple < string , string , bool > ( "Vault token" , $ "?api-version={ CONTAINER_API_VERSION } &resource=https://vault.azure.net/", true ) ,
60
+ new Tuple < string , string , bool > ( "Storage token" , $ "?api-version={ CONTAINER_API_VERSION } &resource=https://storage.azure.com/", true )
61
61
} ;
62
62
63
63
foreach ( var tuple in endpoints )
0 commit comments