import {Fragment} from 'react'; import ExternalLink from 'sentry/components/links/externalLink'; import {t, tct} from 'sentry/locale'; // TODO: Make dynamic for other platforms/integrations export default function AddInstallationInstructions() { return (

{tct( 'The automated AWS Lambda setup will instrument your Lambda functions with Sentry error monitoring and allow you to use tracing without any code changes. We use CloudFormation Stack ([learnMore]) to create the Sentry role which gives us access to your AWS account.', { learnMore: ( {t('Learn more about CloudFormation')} ), } )}

{tct( 'Just press the [addInstallation] button below and complete the steps in the popup that opens.', {addInstallation: {t('Add Installation')}} )}

{tct( 'If you don’t want to add CloudFormation stack to your AWS environment, press the [manualSetup] button instead.', {manualSetup: {t('Manual Setup')}} )}

); }