Skip to content

Commit 6f9ab90

Browse files
author
Michael Brewer
committed
chore: update layer version
1 parent 146577e commit 6f9ab90

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/examples/core/event_handler/api_gateway/layout/template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Resources:
2323
CodeUri: src
2424
Layers:
2525
# Latest version: https://awslabs.github.io/aws-lambda-powertools-python/latest/#lambda-layer
26-
- !Sub arn:aws:lambda:${AWS::Region}:017000801446:layer:AWSLambdaPowertoolsPython:16
26+
- !Sub arn:aws:lambda:${AWS::Region}:017000801446:layer:AWSLambdaPowertoolsPython:17
2727
Events:
2828
ByUser:
2929
Type: Api

docs/examples/index/lambda_layer_cdk_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def __init__(self, scope: core.Construct, id_: str, env: core.Environment) -> No
88
powertools_layer = aws_lambda.LayerVersion.from_layer_version_arn(
99
self,
1010
id="lambda-powertools",
11-
layer_version_arn=f"arn:aws:lambda:{env.region}:017000801446:layer:AWSLambdaPowertoolsPython:16",
11+
layer_version_arn=f"arn:aws:lambda:{env.region}:017000801446:layer:AWSLambdaPowertoolsPython:17",
1212
)
1313
aws_lambda.Function(
1414
self,

docs/examples/index/lambda_layer_main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ resource "aws_lambda_function" "test_lambda" {
3232
role = aws_iam_role.iam_for_lambda.arn
3333
handler = "index.test"
3434
runtime = "python3.9"
35-
layers = ["arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPython:16"]
35+
layers = ["arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPython:17"]
3636

3737
source_code_hash = filebase64sha256("lambda_function_payload.zip")
3838
}

docs/examples/index/lambda_layer_template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ Resources:
88
Handler: app.lambda_handler
99
Runtime: python3.9
1010
Layers:
11-
- !Sub arn:aws:lambda:${AWS::Region}:017000801446:layer:AWSLambdaPowertoolsPython:16
11+
- !Sub arn:aws:lambda:${AWS::Region}:017000801446:layer:AWSLambdaPowertoolsPython:17

0 commit comments

Comments
 (0)