V2Wizard: Implement <Aws> subset of Image Output step

DDF has been dropped, RTK being used for state management now.
This commit is contained in:
lucasgarfield 2024-01-06 11:32:41 +01:00 committed by Lucas Garfield
parent e5c55828e3
commit 091c34431e
8 changed files with 430 additions and 106 deletions

View file

@ -0,0 +1,10 @@
export const isAwsAccountIdValid = (awsAccountId: string | undefined) => {
if (
awsAccountId !== undefined &&
/^\d+$/.test(awsAccountId) &&
awsAccountId.length === 12
) {
return true;
}
return false;
};