None
FR
Emulating Aws Services Locally With Localstack Sqs and Sns
[]
Emil Privér
awscli: image: garland/aws-cli-docker container_name: awscli depends_on: - localstack environment: - AWS_DEFAULT_REGION=eu-central-1 - AWS_ACCESS_KEY_ID=xxx - AWS_SECRET_ACCESS_KEY=xxx command: - /bin/sh - -c - | sleep 5 aws configure set aws_access_key_id "dummy" --profile test-profile aws configure set aws_secret_access_key "dummy" --profile test-profile aws configure set region "eu-central-1" --profile test-profile aws configure set output "table" --profile test-profile aws --endpoint-url=http://localstack:4566 sns create-topic --name dummy-topic --region eu-central-1 --profile test-profile --output table | cat aws --endpoint-url=http://localstack:4566 sqs create-queue --queue-name dummy-queue --profile test-profile --region eu-central-1 --output table | cat aws…