Check out the video! Notes & Links AWS in Plain English...
Intro to Pulumi - Python & AWS - Beginner Tutorial [Video]
Check out the video! GitHub Link to Example Code Setup AWS CLI setup Install AWS CLI pip3 install awscli Setup AWS Creds aws configure Installing Pulumi install-pulumi macOS brew install pulumi Lunix curl -fsSL https://get.pulumi.com | sh Windows @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; iex ((New-Object System.Net.WebClient).DownloadString('https://get.pulumi.com/install.ps1'))" && SET "PATH=%PATH%;%USERPROFILE%\.pulumi\bin" ...
AWS CDK Tutorial - Python - Hands on! [Video]
AWS CDK Tutorial for Python Check out the video! GitHub Link to Example Code Setup AWS CLI setup Install AWS CLI pip3 install awscli Setup AWS Creds aws configure Hugo Static Site Tool Hugo Install brew install hugo Git Clone example Site git clone git@github.com:kevanpeters/hugo-example-site.git CDK Setup Install CDK guide npm install -g aws-cdk If you would the core module on your system pip3 install --upgrade aws-cdk.core...
The Death of RI's -- AWS Savings Plans [Video]
What are savings plans Compute Savings Plans Ec2 Savings Plans Check out this video on the topic! Deeper Dive Into AWS cost Planning! Some Helpful Links: The video PowerPoint in PDF AWS Savings Plans by Prosperops AWS blog post about Savings Plans AWS Doc on Savings Plans...
Idempotency Explained [Video]
A quick tutorial on what idempotency is and some examples of how it is referenced in Software and Operations Engineering. Some Helpful Links: StackOverflow - What is an idempotent operation? What Is Idempotence? Guiding Principles of REST...
Ansible Getting Started [Video]
In this video I go over step by step getting started with Ansible. Ansible is a popular configuration tool that I have used in every DevOps role that I have held. Although many other shiny tools have become more prevalent in the community Ansible will continue to be relevant and widely used. This video covers the Following: What we did before Ansible and these Configuration tools How one-off ansible commands work The inventory system Playbooks and building more complicated automation Ansible roles and how to get get new ones Links:...
RDS Top Bar Fix
The top of the AWS console recently changed, this means RDS and SNS are now fully spelled out at the top of the console when they are pinned. Here is how you fix it :) (function() { 'use strict'; document.querySelectorAll("span.service-label").forEach(function(element){ if(element.innerHTML == "Relational Database Service") { element.innerHTML = "RDS"; } else if (element.innerHTML == "Simple Notification Service") { element.innerHTML = "SNS"; } }); })(); ...
DevOps Resources
(Just some Notes I am sharing that I recently shared with someone interested in DevOps) If you are getting started with DevOps, I would recommend learning AWS basics and creating a lamp (Linuix= OS , Apache=webserver, MySql=database, and PHP= language.. or python/pearl ) stack on an EC2 (AWS basic server) I will add . The cool thing with AWS is everthing you learn about (web servers, database, networking, DNS, programming) can be used and seen on AWS...