Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d3173f3

Browse files
authoredOct 8, 2024
fix(layer): reverting SSM parameter name (aws-powertools#5340)
Reverting SSM parameter name
1 parent fa69986 commit d3173f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎layer_v3/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
POWERTOOLS_VERSION: str = app.node.try_get_context("version")
1111
PYTHON_VERSION: str = app.node.try_get_context("pythonVersion")
1212
PYTHON_VERSION_NORMALIZED = PYTHON_VERSION.replace(".", "")
13-
SSM_PARAM_LAYER_ARN: str = f"/layers/powertools-layer-v3-{PYTHON_VERSION_NORMALIZED}-x86_64-arn"
13+
SSM_PARAM_LAYER_ARN: str = f"/layers/powertools-layer-v3-{PYTHON_VERSION_NORMALIZED}-x86-arn"
1414
SSM_PARAM_LAYER_ARM64_ARN: str = f"/layers/powertools-layer-v3-{PYTHON_VERSION_NORMALIZED}-arm64-arn"
1515

1616
# Validate context variables

0 commit comments

Comments
 (0)
Please sign in to comment.