diff --git a/packages/amplify-e2e-core/src/categories/auth.ts b/packages/amplify-e2e-core/src/categories/auth.ts index e564c111808..8d9e33530a5 100644 --- a/packages/amplify-e2e-core/src/categories/auth.ts +++ b/packages/amplify-e2e-core/src/categories/auth.ts @@ -511,16 +511,16 @@ export function addAuthWithDefaultSocial(cwd: string, settings: any): Promise { .wait('Enter your Amazon App Secret for your OAuth flow') .send(AMAZON_APP_SECRET) .sendCarriageReturn() - .wait('Enter your Services ID for your OAuth flow') + .wait('Enter your Sign in with Apple Client ID for your OAuth flow') .send(APPLE_APP_ID) .sendCarriageReturn() - .wait('Enter your Team ID for your OAuth flow') + .wait('Enter your Sign in with Apple Team ID for your OAuth flow') .send(APPLE_TEAM_ID) .sendCarriageReturn() - .wait('Enter your Key ID for your OAuth flow') + .wait('Enter your Sign in with Apple Key ID for your OAuth flow') .send(APPLE_KEY_ID) .sendCarriageReturn() - .wait('Enter your Private Key for your OAuth flow') + .wait('Enter your Sign in with Apple Private Key for your OAuth flow') .send(APPLE_PRIVATE_KEY) .sendCarriageReturn() .wait('Do you want to configure Lambda Triggers for Cognito') @@ -850,7 +850,7 @@ export function addAuthWithMaxOptions(cwd: string, settings: any): Promise .wait('Enter your Amazon App ID for your identity pool') .send('amazonIDPOOL') .sendCarriageReturn() - .wait('Enter your Bundle Identifier for your identity pool') + .wait('Enter your Apple App ID for your identity pool') .send('appleIDPOOL') .sendCarriageReturn() .wait('Please provide a name for your user pool') @@ -942,13 +942,13 @@ export function addAuthWithMaxOptions(cwd: string, settings: any): Promise .sendLine(AMAZON_APP_ID) .wait('Enter your Amazon App Secret for your OAuth flow') .sendLine(AMAZON_APP_SECRET) - .wait('Enter your Services ID for your OAuth flow') + .wait('Enter your Sign in with Apple Client ID for your OAuth flow') .sendLine(APPLE_APP_ID) - .wait('Enter your Team ID for your OAuth flow') + .wait('Enter your Sign in with Apple Team ID for your OAuth flow') .sendLine(APPLE_TEAM_ID) - .wait('Enter your Key ID for your OAuth flow') + .wait('Enter your Sign in with Apple Key ID for your OAuth flow') .sendLine(APPLE_KEY_ID) - .wait('Enter your Private Key for your OAuth flow') + .wait('Enter your Sign in with Apple Private Key for your OAuth flow') .sendLine(APPLE_PRIVATE_KEY) .wait('Do you want to configure Lambda Triggers for Cognito') .sendLine('y') @@ -1163,13 +1163,13 @@ export function addAuthUserPoolOnlyWithOAuth(cwd: string, settings: AddAuthUserP .sendLine(settings.amazonAppId) .wait('Enter your Amazon App Secret for your OAuth flow') .sendLine(settings.amazonAppSecret) - .wait('Enter your Services ID for your OAuth flow:') + .wait('Enter your Sign in with Apple Client ID for your OAuth flow:') .sendLine(settings.appleAppClientId) - .wait('Enter your Team ID for your OAuth flow:') + .wait('Enter your Sign in with Apple Team ID for your OAuth flow:') .sendLine(settings.appleAppTeamId) - .wait('Enter your Key ID for your OAuth flow:') + .wait('Enter your Sign in with Apple Key ID for your OAuth flow:') .sendLine(settings.appleAppKeyID) - .wait('Enter your Private Key for your OAuth flow:') + .wait('Enter your Sign in with Apple Private Key for your OAuth flow:') .sendLine(settings.appleAppPrivateKey) .wait('Do you want to configure Lambda Triggers for Cognito') .sendConfirmNo() diff --git a/packages/amplify-e2e-tests/src/environment/env.ts b/packages/amplify-e2e-tests/src/environment/env.ts index e6340a3ef0a..a02468a871e 100644 --- a/packages/amplify-e2e-tests/src/environment/env.ts +++ b/packages/amplify-e2e-tests/src/environment/env.ts @@ -170,13 +170,13 @@ export function addEnvironmentHostedUI(cwd: string, settings: { envName: string .sendLine(AMAZON_APP_ID) .wait('Enter your Amazon App Secret for your OAuth flow:') .sendLine(AMAZON_APP_SECRET) - .wait('Enter your Services ID for your OAuth flow:') + .wait('Enter your Sign in with Apple Client ID for your OAuth flow:') .sendLine(APPLE_APP_ID) - .wait('Enter your Team ID for your OAuth flow:') + .wait('Enter your Sign in with Apple Team ID for your OAuth flow:') .sendLine(APPLE_TEAM_ID) - .wait('Enter your Key ID for your OAuth flow:') + .wait('Enter your Sign in with Apple Key ID for your OAuth flow:') .sendLine(APPLE_KEY_ID) - .wait('Enter your Private Key for your OAuth flow:') + .wait('Enter your Sign in with Apple Private Key for your OAuth flow:') .sendLine(APPLE_PRIVATE_KEY) .wait('Try "amplify add api" to create a backend API and then "amplify publish" to deploy everything') .run((err: Error) => {