Giter Club home page Giter Club logo

aws-cli-commands's Introduction

aws-cli-commands

AWS Command ● aws ​configure AWS Access Key ID​ [None]:​ accesskey AWS Secret Access Key​ [None]:​ secretkey Default region name​ ​[None]:​ us-west-2 Default output format​ ​[None]:json

VPC Configuration ● aws​ ​ec2​ ​create-vpc​ --cidr-block​ ​10.0.0.0/16 ● aws​ ​ec2​ ​create-subnet​ ​--vpc-id ​vpc-1234567890​ ​--cidr-block 10.0.1.0/24 ● aws​ ​ec2​ ​create-subnet​ ​--vpc-id​ ​vpc-1234567890​ ​--cidr-block 10.0.2.0/24 ● aws​ ​ec2​ ​create-internet-gateway ● aws​ ​ec2​ ​attach-internet-gateway​ ​--vpc-id​ ​vpc-1234567890 --internet-gateway-id​ ​igw-1234567890 ● aws​ ​ec2​ ​create-route-table​ ​--vpc-id​ ​vpc-1234567890 ● aws​ ​ec2​ ​create-route​ ​--route-table-id​ ​rtb-1234567890 --destination-cidr-block​ 0.0.0.0/0 ​--gateway-id​ ​igw-1234567890 ● aws​ ​ec2​ ​describe-route-tables​ ​--route-table-id​ rtb-1234567890 ● aws​ ​ec2​ ​describe-subnets​ ​--filters "Name=vpc-id,​Values​=vpc-2f09a348" ​--query 'Subnets[*].{ID:SubnetId,CIDR:CidrBlock}' ● aws​ ​ec2​ ​associate-route-table​ ​--subnet-id​ subnet-b46032ec --route-table-id​ rtb-c1c8faa6 EC2 Instance ● aws ​ec2​ ​describe-instance-status ● aws ​ec2​ ​start-instances​ --instance-ids​ ​i-123456789 ● aws ​ec2​ ​stop-instances​ ​--instance-ids​ ​i-123456789

● aws​ ​ec2 ​terminate-instances​ ​--instance-ids​ i-1a2b3c4d ● aws​ ​ec2 ​describe-volumes ● aws​ ​ec2​ create-key-pair ​--key-name​ MyKeyPair ​--query 'KeyMaterial' --output text > ​MyKeyPair​.​pem ● aws ec2 create-security-group --group-name SSHAccess --description "Security group for SSH access" --vpc-id vpc-1234567890 ● aws ec2 authorize-security-group-ingress --group-id sg-e1fb8c9a --protocol tcp --port 22 --cidr 0.0.0.0/0 ● aws ec2 run-instances --image-id ami-a4827dc9 --count 1 --instance-type t2.micro --key-name MyKeyPair --security-group-ids sg-e1fb8c9a --subnet-id subnet-b46032ec ● ● aws ​s3 ​mb​ ​s3://sansbound ● aws ​s3 ​rb​ ​s3://bucket-name ● aws ​s3​ ls ● aws​ ​s3​ ​cp​ ​C:\Users\test\Desktop\test.png​ ​s3://bucketname ​copy file ● ● aws​ iam​ ​create-user​ ​--user-name​ Employee1 ● aws ​s3​ ​sync​ ​c:\tub​ ​s3://bucketname

aws-cli-commands's People

Contributors

devsecopsg avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.