From a developer's perspective, LZA is an abstraction layer which hides the complexity of setting up a landing zone on AWS. This is especially useful for the customers who are new to AWS, as they don't necessarily need to have expertise in CloudFormation, CDK and AWS SDK to setup a landing zone with LZA. All they need to maintain are just a few configuration files.
Tag: AWS
Amazon CodeCatalyst vs AWS Code Family
Amazon CodeCatalyst is a new addition to the AWS development and delivery toolbox. Comparing to the AWS Code family (CodeCommit, CodeBuild, CodeDeploy, CodePipeline…), it is an integrated DevOps platform rather than a single purpose service.
Use Amazon CodeWhisperer for free
Amazon CodeWhisperer is a Generative AI powered coding companion. It is very exciting to see that Amazon CodeWhisperper is now generally available and FREE for individual use!
CodePipeline Output artifact format – Full clone
Something that I learned Today - I was working a CodePipeline pipeline which gets the source codes from a CodeStar connection that was built to a Bitbucket Cloud workspace. And in the following stage, I needed to get the git commit history of that repository. As shown below CodePipeline does not keep the git metadata … Continue reading CodePipeline Output artifact format – Full clone
Serverless Ingress Solution on AWS
Below is the typical ingress solution for many organizations' AWS workloads. The data flow is: Users -> CDN (e.g Akamai,Cloudflare) -> Ingress internet-facing ALB -> Ingress ASG (e.g Nginx, HAProxy) -> TGW -> Workload internal ALB -> Workload applications (ASG or K8S services). As you can see, the improvements are the adoptions of some Cloud … Continue reading Serverless Ingress Solution on AWS