Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 811 Bytes

readme.md

File metadata and controls

39 lines (24 loc) · 811 Bytes

https://docs.localstack.cloud/integrations/

Installation/Starting Localstack (Option 1)

python -m pip install localstack==0.9.0
localstack start

Running localstack on Docker (Option 2)

docker run --rm -it -p 4566:4566 -p 4571:4571 localstack/localstack

Using AWS CLI

AWSLocal wrapper (Option #1)

pip install awslocal-cli
awslocal s3api list-buckets --region us-east-1

AWS CLI pointing to endpoint (Option #2)

aws --endpoint-url=http://localhost:4566 s3api create-bucket --bucket my-bucket --region us-east-1

Get List of EC2 instances

aws --endpoint-url=http://localhost:4566 ec2 describe-instances --query 'Reservations[].Instances[].[InstanceId,InstanceType,PublicIpAddress,Tags[?Key==`Name`]| [0].Value]' --output table --region us-east-1