Agile Manifesto Concepts Manifesto Individuals and interactions over processes and tools Working software over comprehensive documentation Customer collaboration over contract negotiation Responding to change over following a plan 12 Principles Our highest priority is to satisfy the customer through early and continuous delivery of valuable software. Welcome changing requirements, even late in development. Agile processes…
Month: December 2021
Lambda crash course…
Creating a Role Create Policy using AWS Policy Generator Type -> IAM Policy AWS Service -> Amazon SES Actions -> SendEmail, SendRawEmail ARN -> * Click Add Statement Click Generate Policy Copy and save the text { “Version”: “2012-10-17”, “Statement”: [ { “Sid”: “Stmt1638644864547”, “Action”: [ “ses:SendEmail”, “ses:SendRawEmail” ], “Effect”: “Allow”, “Resource”: “*” } ] }…
Using AWS Lambda to enable static IP addresses for Application Load Balancers
Just running through a blog on AWS… I will be contrasting and comparing different ways to make it go. Here is the link to the blog I followed:https://aws.amazon.com/blogs/networking-and-content-delivery/using-aws-lambda-to-enable-static-ip-addresses-for-application-load-balancers/ We need some infrastructure upfront to start this: Network Load Balancer (NLB) that has an IP based target group Internal Application Load Balancer (ALB) The ALB and…