Skip to content

Commit 06bef27

Browse files
committed
Fix function name refence in READMEs
1 parent b8e11aa commit 06bef27

File tree

6 files changed

+3
-6
lines changed

6 files changed

+3
-6
lines changed

lambda-debugging-sam-java/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ SAM ?= AWS_ENDPOINT_URL=$(AWS_ENDPOINT_URL) \
1414
FUNCTION_NAME ?= HelloWorldFunctionJava
1515
LAMBDA_RUNTIME ?= java21
1616

17-
# Changing architecture (arm64 or x86_64) requires rebuilding the Java package in Docker
1817
ARCH ?= x86_64
1918
DOCKER_PLATFORM ?= linux/$(ARCH)
2019
IMAGE ?= public.ecr.aws/sam/build-$(LAMBDA_RUNTIME):latest-$(ARCH)

lambda-debugging-sam-java/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ We recommend the one-click setup using the AWS Toolkit for VS Code unless your a
5353

5454
* `IMAGE_NAME=localstack/localstack-pro` ensures the Pro image is started
5555
* `LOCALSTACK_LAMBDA_DEBUG_MODE=1` adjusts timeouts
56-
* `LOCALSTACK_LAMBDA_DEBUG_MODE_CONFIG_PATH=/tmp/lambda_debug_mode_config.yaml` points to the config file for Lambda debug mode allowing for advanced configuration. It maps the Lambda function `arn:aws:lambda:us-east-1:000000000000:function:function-one` to port `5050`.
56+
* `LOCALSTACK_LAMBDA_DEBUG_MODE_CONFIG_PATH=/tmp/lambda_debug_mode_config.yaml` points to the config file for Lambda debug mode allowing for advanced configuration. It maps the Lambda function `arn:aws:lambda:us-east-1:000000000000:function:HelloWorldFunctionJava` to port `5050`.
5757
* `--volume $PWD/lambda_debug_mode_config.yaml:/tmp/lambda_debug_mode_config.yaml` maps the Lambda debug configuration from the host into the LocalStack Docker container for hot-reloading configuration updates.
5858

5959
### Deploying

lambda-debugging-sam-javascript/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ SAM ?= AWS_ENDPOINT_URL=$(AWS_ENDPOINT_URL) \
1414
FUNCTION_NAME ?= HelloWorldFunctionJavaScript
1515
LAMBDA_RUNTIME ?= nodejs22.x
1616

17-
# Changing architecture (arm64 or x86_64) requires rebuilding the Java package in Docker
1817
ARCH ?= x86_64
1918
DOCKER_PLATFORM ?= linux/$(ARCH)
2019
IMAGE ?= public.ecr.aws/sam/build-$(LAMBDA_RUNTIME):latest-$(ARCH)

lambda-debugging-sam-javascript/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ We recommend the one-click setup using the AWS Toolkit for VS Code unless your a
5353

5454
* `IMAGE_NAME=localstack/localstack-pro` ensures the Pro image is started
5555
* `LOCALSTACK_LAMBDA_DEBUG_MODE=1` adjusts timeouts
56-
* `LOCALSTACK_LAMBDA_DEBUG_MODE_CONFIG_PATH=/tmp/lambda_debug_mode_config.yaml` points to the config file for Lambda debug mode allowing for advanced configuration. It maps the Lambda function `arn:aws:lambda:us-east-1:000000000000:function:function-one` to port `6050`.
56+
* `LOCALSTACK_LAMBDA_DEBUG_MODE_CONFIG_PATH=/tmp/lambda_debug_mode_config.yaml` points to the config file for Lambda debug mode allowing for advanced configuration. It maps the Lambda function `arn:aws:lambda:us-east-1:000000000000:function:HelloWorldFunctionJavaScript` to port `6050`.
5757
* `--volume $PWD/lambda_debug_mode_config.yaml:/tmp/lambda_debug_mode_config.yaml` maps the Lambda debug configuration from the host into the LocalStack Docker container for hot-reloading configuration updates.
5858

5959
### Deploying

lambda-debugging-sam-python/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ SAM ?= AWS_ENDPOINT_URL=$(AWS_ENDPOINT_URL) \
1414
FUNCTION_NAME ?= HelloWorldFunctionPython
1515
LAMBDA_RUNTIME ?= python3.13
1616

17-
# Changing architecture (arm64 or x86_64) requires rebuilding the Java package in Docker
1817
ARCH ?= x86_64
1918
DOCKER_PLATFORM ?= linux/$(ARCH)
2019
IMAGE ?= public.ecr.aws/sam/build-$(LAMBDA_RUNTIME):latest-$(ARCH)

lambda-debugging-sam-python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ We recommend the one-click setup using the AWS Toolkit for VS Code unless your a
5353

5454
* `IMAGE_NAME=localstack/localstack-pro` ensures the Pro image is started
5555
* `LOCALSTACK_LAMBDA_DEBUG_MODE=1` adjusts timeouts
56-
* `LOCALSTACK_LAMBDA_DEBUG_MODE_CONFIG_PATH=/tmp/lambda_debug_mode_config.yaml` points to the config file for Lambda debug mode allowing for advanced configuration. It maps the Lambda function `arn:aws:lambda:us-east-1:000000000000:function:function-one` to port `8050`.
56+
* `LOCALSTACK_LAMBDA_DEBUG_MODE_CONFIG_PATH=/tmp/lambda_debug_mode_config.yaml` points to the config file for Lambda debug mode allowing for advanced configuration. It maps the Lambda function `arn:aws:lambda:us-east-1:000000000000:function:HelloWorldFunctionPython` to port `8050`.
5757
* `--volume $PWD/lambda_debug_mode_config.yaml:/tmp/lambda_debug_mode_config.yaml` maps the Lambda debug configuration from the host into the LocalStack Docker container for hot-reloading configuration updates.
5858

5959
### Deploying

0 commit comments

Comments
 (0)