November 23, 2021
#AWS
#Terraform
Security groups are a critical component for securing resources in AWS. This guide will show you how to create and manage security groups in AWS using …
Read Article →
November 22, 2021
#AWS
Below is a simple CloudFormation script block to create a Security Group in AWS.
Resources:
SampleAppAppstreamSG:
Type: AWS::EC2::SecurityGroup …
Read Article →
November 21, 2021
#AWS
AWS CloudFormation is very useful for creating template-able infrastructure definitions.
One of the sections of a template, is the Input Parameters, …
Read Article →
November 20, 2021
#AWS
The AWS CLI comes with a useful subcommand to validate a CloudFormation template.
Simply run the following to validate a CloudFormation template file: …
Read Article →
November 18, 2021
#AWS
#CLI
You may come across a message that reads similar to the following:
<meta charset="utf-8">Encoded authorization failure message
A full …
Read Article →
November 16, 2021
#AWS
AppStream (2.0) is a fully managed non-persistent desktop and application service for remotely accessing your work.
The ImageBuilder forms the first …
Read Article →
August 9, 2021
#AWS
What are Blue/Green Deployments?
“Blue/Green Deployments” is a software deployment methodology. A terminology to suggest two mostly equal …
Read Article →
August 3, 2021
#AWS
#CLI
#Mac
This error often looks something like:
.zshrc: /usr/local/bin/aws: bad interpreter:
/usr/local/opt/python/bin/python3.6: no such file or directory …
Read Article →
July 25, 2021
#AWS
#Docker
If you are trying to push a Docker image to AWS ECR (Elastic Container Registry) and you get a no basic auth credentials error. Then you can easily …
Read Article →
July 22, 2021
#AWS
#CLI
#Docker
By default, Docker pushes its images to Docker Hub.
While Docker Hub is a great way to share both your public and private images, you may find the …
Read Article →
July 8, 2021
#AWS
#Python
You can store secrets in AWS Secret Manager and reference their ARN in AWS Systems Secret Manager.
The below snippet allows you to specify the …
Read Article →
May 18, 2021
#AWS
If you have stored a secret in AWS using the Secrets Manager, it is possible to use the AWS CLI to retrieve this value at a later date.
aws …
Read Article →