Kyle Pericak

"It works in my environment"

Created: 2020-01-27
Modified: 2020-01-27

AWS CodeBuild CICD - Deploy to Lambda

Build a CI/CD pipeline for Python Lambda functions using CodeCommit, CodeBuild, and AWS SAM templates to test and auto-deploy on every commit.

Created: 2020-01-21
Modified: 2020-01-21

Authenticating with AWS IAM in AWS API Gateway

Lock down an AWS API Gateway endpoint with IAM auth, wire it to a Python Lambda, and call it from a signed client using policies and access keys.

Created: 2020-01-15
Modified: 2020-01-15

CodePipeline - Continuous Delivery to AWS ECR

Wire up AWS CodeCommit, CodePipeline, and CodeBuild with a buildspec.yml to auto-build Docker images and push them to ECR on every commit.

Created: 2020-01-09
Modified: 2020-01-09

Create & Terminate EC2 Instances from Python

Launch and terminate EC2 instances from Python using boto3, with a working example covering Ubuntu AMIs, security groups, tags, and wait_until_running.

Created: 2020-01-09
Modified: 2020-01-09

IAM Auth for Lambda

Restrict access to a specific AWS Lambda function using an IAM policy scoped to its ARN, then invoke it from Python with boto3 and access keys.

Created: 2020-01-08
Modified: 2020-01-08

AWS Lambda - Basics

Create your first AWS Lambda function in Python, define a test event, and understand pricing per request and per GB-second of execution duration.

Created: 2019-11-27
Modified: 2019-11-27

Project: AWS Deep Dive

An ongoing deep-dive project exploring AWS services hands-on, covering EC2, Lambda, S3, ECR, Fargate, API Gateway, and CodePipeline with working examples.

Created: 2019-09-26
Modified: 2019-09-26

Using AWS S3 from Python

Upload and download files to AWS S3 from Python using boto3, with IAM policies, user groups, and a dedicated service account for programmatic access.

Created: 2019-09-11
Modified: 2020-08-13

Error Messages, Codes, & Stack Traces

A running reference of error messages I've hit and the fixes that worked. Includes Docker D-Bus login, Ceph OSD memory, Chrome cert errors, and AWS ECR NTP.

Created: 2019-09-10
Modified: 2019-09-10

AWS Fargate - Basics

Step-by-step for launching a Docker container on AWS ECS Fargate from the web console, including task definitions, load balancer setup, and ECR image URLs.

Created: 2019-08-26
Modified: 2019-09-19

AWS ECR - Elastic Container Registry - Basics

Set up an AWS Elastic Container Registry repo, create least-privilege IAM groups for push and pull access, and connect Docker using the AWS CLI.