(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #!/bin/bash | |
| # Get AWS CLI IAM credentials from LastPass CLI | |
| # Blog post: https://paulgalow.com/securing-aws-credentials-macos-lastpass | |
| # ############################################################################## | |
| # Please adjust those properties | |
| readonly lastPassEntry="REPLACE-ME" # Name of LastPass entry that stores your IAM credentials | |
| readonly lpass="/usr/local/bin/lpass" # Path to LastPass CLI | |
| # ############################################################################## |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| //colors | |
| $grey: #A1A1A1; | |
| $lightblue: #238DAF; | |
| $navyblue: #00526B; | |
| $yellow: #FFE433; | |
| $white: #FFFFFF; |