Skip to content

Commit 93d62b4

Browse files
Added SNS endpoint environment variables to default scripts
1 parent d44d06f commit 93d62b4

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

scripts/default-run-docker.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export AWS_ACCESS_KEY_ID=localstack
44
export AWS_SECRET_ACCESS_KEY=localstack
55
export AWS_REGION=eu-central-1
66
export AWS_S3_ENDPOINT_URL=http://host.docker.internal:4566
7+
export AWS_SNS_ENDPOINT_URL=http://host.docker.internal:4566
78
export AWS_SQS_ENDPOINT_URL=http://host.docker.internal:4566
89
export AWS_S3_FORCE_PATH_STYLE=true
910

@@ -12,6 +13,7 @@ docker run -p 5000:80 \
1213
-e AWS_SECRET_ACCESS_KEY \
1314
-e AWS_REGION \
1415
-e AWS_S3_ENDPOINT_URL \
16+
-e AWS_SNS_ENDPOINT_URL \
1517
-e AWS_SQS_ENDPOINT_URL \
1618
-e AWS_S3_FORCE_PATH_STYLE \
1719
--add-host=host.docker.internal:host-gateway \

scripts/default-run-unix.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export AWS_ACCESS_KEY_ID=localstack
44
export AWS_SECRET_ACCESS_KEY=localstack
55
export AWS_REGION=eu-central-1
66
export AWS_S3_ENDPOINT_URL=http://localhost:4566
7+
export AWS_SNS_ENDPOINT_URL=http://localhost:4566
78
export AWS_SQS_ENDPOINT_URL=http://localhost:4566
89
export AWS_S3_FORCE_PATH_STYLE=true
910

scripts/default-run-windows.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ set AWS_ACCESS_KEY_ID=localstack
44
set AWS_SECRET_ACCESS_KEY=localstack
55
set AWS_REGION=eu-central-1
66
set AWS_S3_ENDPOINT_URL=http://localhost:4566
7+
set AWS_SNS_ENDPOINT_URL=http://localhost:4566
78
set AWS_SQS_ENDPOINT_URL=http://localhost:4566
89
set AWS_S3_FORCE_PATH_STYLE=true
910

0 commit comments

Comments
 (0)