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
#!/bin/bash | |
termination_policy="OldestLaunchTemplate OldestInstance" | |
info(){ | |
echo -e "\033[32m$(date +%Y-%m-%dT%H:%M:%S) $*\033[m" | |
} | |
usage(){ | |
if [ $# -ge 1 ] ; then |
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
package main | |
import ( | |
"bufio" | |
"context" | |
"crypto" | |
"crypto/ecdsa" | |
"crypto/rand" | |
"crypto/rsa" | |
"crypto/x509" |
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
alias cp="cp -i" | |
alias rm="rm -i" | |
alias mv="mv -i" | |
alias k="kubectl" | |
alias kd="kubectl describe" | |
alias g="git" | |
alias t="terraform" | |
alias tf="terraform" | |
alias tfdoc="terraform-docs" | |
alias awsid="aws sts get-caller-identity" |
OlderNewer