Last active
February 10, 2020 10:20
-
-
Save waynedovey/2cbfb83a588922b4f187674a07fcaed9 to your computer and use it in GitHub Desktop.
AWS User account create
This file contains 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
curl -O https://bootstrap.pypa.io/get-pip.py | |
python get-pip.py --user | |
pip install awscli --upgrade --user | |
export PATH=$PATH:~/.local/bin/ | |
aws configure | |
aws iam create-user --user-name aws-ec2-manager | |
aws iam attach-user-policy \ | |
--policy-arn arn:aws:iam::aws:policy/PowerUserAccess \ | |
--user-name aws-ec2-manager | |
aws iam create-login-profile --user-name aws-ec2-manager --password <your_password> --no-password-reset-required | |
aws iam list-users | |
(Proxy Boto Bypass) | |
pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org boto --user | |
#RHEL Setup | |
yum install -y python27-python-pip | |
scl enable python27 bash | |
pip install openshift | |
pip install -U setuptools |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment