I have created a repo that will host a collection of CDK projects. These were created for learning purposes, but can be leveraged for other usages. This will be an on going project. https://github.com/aldomatic/AWS-CDK-Projects
Category: cloud
This is just another approach to grant access to instances via Session Manager. The most common way is SSH via a key-pair. 1. Create a Policy The policy below can be attached to a group. This group of users will then be able to connect to any instance that has the tag “Environment”: “Development”. You […]
What is a hash function A hash function is a function that takes in input value, and from that input value creates an output value deterministic of the input value. For any x input value, you will always receive the same y output value when the hash function is run. In this way, every input has […]