The infrastructure is written with AWS CDK
´npm install -g aws-cdk´
Running for the first time:
´cdk bootstrap´
First deploy the pre requierments stack:
´cdk deploy PreReq´´
This includes ECR repository for Lambdas Images
Ensure that you have Docker/Podman installed and you logged in with ECR:
´aws ecr get-login-password --region eu-central-1 | podman login --username AWS --password-stdin ACCOUNT_ID.dkr.ecr.eu-central-1.amazonaws.com´
Build and deploy Lambdas
Then deploy the main stack:
´cdk deploy IacStack´