Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export async function login(): Promise {
const creds = await msRestNodeAuth.loginWithServicePrincipalSecret(clientId, secret, tenant)
const websites = new appservice.WebSiteManagementClient(creds as any, subscriptionId)
return {
websites,
webapps: new appservice.WebApps(websites),
secrets: new SecretClient(`https://majavashakki-vault.vault.azure.net`, new EnvironmentCredential()),
cosmosdb: new cosmosdb.CosmosDBManagementClient(creds as any, subscriptionId),
containerregistry: new ContainerRegistryManagementClient(creds as any, subscriptionId),
}
}