- Download Docker Cloud
- Open application and sign in
- Go CLI
docker ps
- For AWS Client , it is region specific. If different region is required, have 2 client.
- Download AWS Toolkit
aws configure sso
- select the profile to configure
- Download AWS CLI 2
- Install AWSP. This is for easy command line switch between profiles.
- Install aws2-wrap. This is for export sso programmatic access keys to be use for git commit or terraform.
- Got to .bash_profile, insert the function below:
function awslogin(){
awsp;
aws sso login;
eval $(aws2-wrap --export)
}
- To login via sso, type
awslogin
, select the profile to login to. - Check environment has been populated with credentials using
env