It's a fairly common complaint that after enabling github two factor authentication that command line utilities
stop working. The underlying issue is command line utilities send your username and password with each request
to github, using two factor authentication disables github from accepting just your username and password, so your
command line utilities such as git
appear to stop working. Github will still accept a personal access token instead
of your password however.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USD|United States Dollars | |
EUR|Euro | |
GBP|United Kingdom Pounds | |
DZD|Algeria Dinars | |
ARP|Argentina Pesos | |
AUD|Australia Dollars | |
ATS|Austria Schillings | |
BSD|Bahamas Dollars | |
BBD|Barbados Dollars | |
BEF|Belgium Francs |
I'm going to walk you through the steps for setting up a AWS Lambda to talk to the internet and a VPC. Let's dive in.
So it might be really unintuitive at first but lambda functions have three states.
- No VPC, where it can talk openly to the web, but can't talk to any of your AWS services.
- VPC, the default setting where the lambda function can talk to your AWS services but can't talk to the web.
- VPC with NAT, The best of both worlds, AWS services and web.