Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
30 lines
986 B
TypeScript
30 lines
986 B
TypeScript
export const credentials = {
|
|
azureStorageOAuth2Api: {
|
|
grantType: 'authorizationCode',
|
|
authUrl: 'https://login.microsoftonline.com/common/oauth2/v2.0/authorize',
|
|
accessTokenUrl: 'https://login.microsoftonline.com/common/oauth2/v2.0/token',
|
|
clientId: 'CLIENTID',
|
|
clientSecret: 'CLIENTSECRET',
|
|
scope: 'https://storage.azure.com/user_impersonation',
|
|
authQueryParameters: 'response_mode=query',
|
|
authentication: 'body',
|
|
oauthTokenData: {
|
|
token_type: 'Bearer',
|
|
scope: 'https://storage.azure.com/user_impersonation',
|
|
expires_in: 4730,
|
|
ext_expires_in: 4730,
|
|
access_token: 'ACCESSTOKEN',
|
|
callbackQueryString: {
|
|
session_state: 'SESSIONSTATE',
|
|
},
|
|
},
|
|
account: 'myaccount',
|
|
baseUrl: 'https://myaccount.blob.core.windows.net',
|
|
},
|
|
azureStorageSharedKeyApi: {
|
|
account: 'devstoreaccount1',
|
|
key: 'Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==',
|
|
baseUrl: 'https://myaccount.blob.core.windows.net',
|
|
},
|
|
};
|