Skip to content

Commit e00c572

Browse files
authored
Merge branch 'main' into lambda-layer-ssm-parameters
2 parents 553020b + 492a348 commit e00c572

File tree

677 files changed

+8274
-850
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

677 files changed

+8274
-850
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ crash.log
206206
crash.*.log
207207

208208
# Exclude all .tfvars files, which are likely to contain sensitive data, such as
209-
# password, private keys, and other secrets. These should not be part of version
210-
# control as they are data points which are potentially sensitive and subject
209+
# password, private keys, and other secrets. These should not be part of version
210+
# control as they are data points which are potentially sensitive and subject
211211
# to change depending on the environment.
212212
*.tfvars
213213
*.tfvars.json

APIGateway-SQS-ReceiveMessages/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Outputs:
115115
# API Gateway Invoke URL
116116
AppApiEndpoint:
117117
Description: API Endpoint
118-
Value: !Sub https://${AppApi}.execute-api.${AWS::Region}.amazonaws.com/Prod
118+
Value: !Sub https://${AppApi}.execute-api.${AWS::Region}.${AWS::URLSuffix}/Prod
119119

120120
QueueName:
121121
Description: SQS Name

activemq-lambda-sam-java/template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Description: Event driven Amazon MQ for ActiveMQ message processing using AWS La
44

55
Globals:
66
Function:
7-
Runtime: java21
7+
Runtime: java25
88
MemorySize: 512
99

1010
Parameters:
@@ -147,7 +147,7 @@ Resources:
147147
Outputs:
148148
ActiveMQWebConsole:
149149
Description: The ActiveMQ web-console host
150-
Value: !Sub 'https://${MyMQBroker}-1.mq.${AWS::Region}.amazonaws.com:8162/admin/index.jsp'
150+
Value: !Sub 'https://${MyMQBroker}-1.mq.${AWS::Region}.${AWS::URLSuffix}:8162/admin/index.jsp'
151151
MyMQMessageHandlerFunction:
152152
Description: The name of the ActiveMQ message handler function
153153
Value: !Ref MyMQMessageHandlerFunction

activemq-lambda/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Resources:
7373
Properties:
7474
CodeUri: mq_listener/
7575
Handler: app.lambda_handler
76-
Runtime: python3.9
76+
Runtime: python3.14
7777
Architectures:
7878
- x86_64
7979
Events:

adobe-eventbridge-lambda/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None:
5656
adobe_process_order_events_lambda = _lambda.Function(
5757
self,
5858
id='AdobeProcessOrderEventsLambda',
59-
runtime=_lambda.Runtime.PYTHON_3_11,
59+
runtime=_lambda.Runtime.PYTHON_3_14,
6060
code=_lambda.Code.from_asset('src'),
6161
handler='AdobeProcessOrderEvents.handler',
6262
role=lambda_role,

alb-cognito-lambda/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Resources:
6464
FunctionName: "ALBLambda"
6565
Description: An Application Load Balancer Lambda Target that returns regional metrics
6666
Handler: index.lambda_handler
67-
Runtime: python3.7
67+
Runtime: python3.14
6868
Role: !GetAtt "MyLambdaFunctionPermission.Arn"
6969
Layers:
7070
- !Ref LambdaLayerARN

alb-lambda-pulumi-cs/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797

9898
var fn = new Aws.Lambda.Function("fn", new()
9999
{
100-
Runtime = "nodejs18.x",
100+
Runtime = "nodejs24.x",
101101
Handler = "index.handler",
102102
Role = lambdaRole.Arn,
103103
Code = new FileArchive("./lambda"),

alb-lambda-pulumi-go/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func main() {
100100
return err
101101
}
102102
fn, err := lambda.NewFunction(ctx, "fn", &lambda.FunctionArgs{
103-
Runtime: pulumi.String("nodejs18.x"),
103+
Runtime: pulumi.String("nodejs24.x"),
104104
Handler: pulumi.String("index.handler"),
105105
Role: lambdaRole.Arn,
106106
Code: pulumi.NewFileArchive("./lambda"),

alb-lambda-pulumi-yaml/Pulumi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ resources:
5959
fn:
6060
type: aws:lambda:Function
6161
properties:
62-
runtime: nodejs18.x
62+
Runtime: nodejs24.x
6363
handler: index.handler
6464
role: ${lambdaRole.arn}
6565
code:

alb-lambda-rest-api-sam-py/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ Note: ALB has no authentication or authorization and should only be used for dem
6666
6767
### SAM CLI for Local API Testing
6868
69-
The SAM CLI seamlessly extends the capabilities of the AWS CLI, introducing essential features for constructing and validating Lambda applications. Leveraging the power of Docker, it orchestrates the execution of functions within an Amazon Linux environment aligned with the Lambda runtime specifications, all sourced from [sam/build-python3.9](https://gallery.ecr.aws/sam/build-python3.9).
69+
The SAM CLI seamlessly extends the capabilities of the AWS CLI, introducing essential features for constructing and validating Lambda applications. Leveraging the power of Docker, it orchestrates the execution of functions within an Amazon Linux environment aligned with the Lambda runtime specifications.
70+
71+
7072
This emulation replicates the Lambda environment.
7173
7274
To simulate an ALB (Application Load Balancer) event, the CLI relies on the configuration stored in [event.json](./events/event.json). This file corresponds to an ALB event, and it is generated by the SAM command: `sam local generate-event alb request`.

0 commit comments

Comments
 (0)