I wrote a blog post earlier on how to create and deploy a containerized API-driven Python Streamlit web app using CICD on AWS. Although the steps I...
For further actions, you may consider blocking this person and/or reporting abuse
It is possible to use either CDK or CFN, or even both in combination, depending on personal preference or limitations of the functions. Although additional security measures can be added to each stack and security scanning can be integrated into the CICD pipeline, the main focus here was on CloudFormation.
Launch Template always uses the latest Amazon AMI, so no EC2 patching was necessary. The "user-data" was used to install dependencies, and then pull and run the application container.
shouldn't the install of dependencies either be in the AMI, or through CodeDeploy?