I use Python more and more regularly and each time I set up a new machine I go through the same steps to enable a clean and modular way to run multiple versions of Python, each time I forget a step and am left scratching my head, this time I decided to document those steps.… Continue reading The right way to setup Python on MacOS
Tag: aws
Identifiers within AWS CDK
A quick blog today on both Construct and Unique identifiers within AWS CDK as well as objects within a CDK construct. Objects in a CDK construct When working within a Construct, AWS resources are referenced as objects when created. In the below screenshot, this.acme_vpc is an example of an object. You can also see that… Continue reading Identifiers within AWS CDK
Reference and import existing assets into AWS CDK
Hey Everyone, Have spent quite a bit of time recently using AWS CDK to build cloud infrastructure via code. What I really like about it is the fact I can code up AWS infrastructure in my preferred language (generally Python or Javascript) and spend less time to do this than in the past when I… Continue reading Reference and import existing assets into AWS CDK