Skip to content

Commit 1c90bd0

Browse files
authored
Merge branch 'main' into merge-back/2.126.0
2 parents fb74c41 + bf95934 commit 1c90bd0

24 files changed

+563
-32
lines changed

CONTRIBUTORS.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@ Shout out to our top contributors!
1111
- [corymhall](https://github.com/corymhall)
1212
- [shivlaks](https://github.com/shivlaks)
1313
- [otaviomacedo](https://github.com/otaviomacedo)
14-
- [madeline-k](https://github.com/madeline-k)
1514
- [mrgrain](https://github.com/mrgrain)
15+
- [madeline-k](https://github.com/madeline-k)
1616
- [NetaNir](https://github.com/NetaNir)
1717
- [comcalvi](https://github.com/comcalvi)
1818
- [robertd](https://github.com/robertd)
19-
- [pahud](https://github.com/pahud)
2019
- [MrArnoldPalmer](https://github.com/MrArnoldPalmer)
21-
- [peterwoodworth](https://github.com/peterwoodworth)
20+
- [pahud](https://github.com/pahud)
2221
- [TheRealAmazonKendra](https://github.com/TheRealAmazonKendra)
22+
- [peterwoodworth](https://github.com/peterwoodworth)
2323
- [lpizzinidev](https://github.com/lpizzinidev)
24-
- [colifran](https://github.com/colifran)
2524
- [go-to-k](https://github.com/go-to-k)
25+
- [colifran](https://github.com/colifran)
2626
- [nija-at](https://github.com/nija-at)
2727
- [hoegertn](https://github.com/hoegertn)
2828
- [watany-dev](https://github.com/watany-dev)
2929
- [jumic](https://github.com/jumic)
3030

3131

32-
_Last updated: Mon, 01 Jan 24 00:09:50 +0000_
32+
_Last updated: Thu, 01 Feb 24 00:09:34 +0000_

packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.pipeline-elastic-beanstalk-deploy.js.snapshot/aws-cdk-codepipeline-elastic-beanstalk-deploy.template.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@
441441
"Value": "AWSServiceRoleForElasticBeanstalkManagedUpdates"
442442
}
443443
],
444-
"SolutionStackName": "64bit Amazon Linux 2023 v6.0.2 running Node.js 18"
444+
"SolutionStackName": "64bit Amazon Linux 2023 v6.0.4 running Node.js 18"
445445
},
446446
"DependsOn": [
447447
"beastalkapp",

packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.pipeline-elastic-beanstalk-deploy.js.snapshot/manifest.json

+4-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.pipeline-elastic-beanstalk-deploy.js.snapshot/tree.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.pipeline-elastic-beanstalk-deploy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const beanstalkEnv = new elasticbeanstalk.CfnEnvironment(stack, 'beanstlk-env',
7979
applicationName: beanstalkApp.applicationName!,
8080
environmentName: 'codepipeline-test-env',
8181
// see https://docs.aws.amazon.com/elasticbeanstalk/latest/platforms/platforms-supported.html#platforms-supported.nodejs
82-
solutionStackName: '64bit Amazon Linux 2023 v6.0.2 running Node.js 18',
82+
solutionStackName: '64bit Amazon Linux 2023 v6.0.4 running Node.js 18',
8383
optionSettings: [
8484
{
8585
namespace: 'aws:autoscaling:launchconfiguration',

packages/@aws-cdk-testing/framework-integ/test/aws-lambda/test/integ.logging-config.js.snapshot/aws-cdk-lambda-logging-config.assets.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-lambda/test/integ.logging-config.js.snapshot/aws-cdk-lambda-logging-config.template.json

+106
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,112 @@
233233
"LambdaWithJSONFormatServiceRole37FFB486"
234234
]
235235
},
236+
"LambdaWithTextLoggingFormatServiceRole3ADC91E1": {
237+
"Type": "AWS::IAM::Role",
238+
"Properties": {
239+
"AssumeRolePolicyDocument": {
240+
"Statement": [
241+
{
242+
"Action": "sts:AssumeRole",
243+
"Effect": "Allow",
244+
"Principal": {
245+
"Service": "lambda.amazonaws.com"
246+
}
247+
}
248+
],
249+
"Version": "2012-10-17"
250+
},
251+
"ManagedPolicyArns": [
252+
{
253+
"Fn::Join": [
254+
"",
255+
[
256+
"arn:",
257+
{
258+
"Ref": "AWS::Partition"
259+
},
260+
":iam::aws:policy/service-role/AWSLambdaBasicExecutionRole"
261+
]
262+
]
263+
}
264+
]
265+
}
266+
},
267+
"LambdaWithTextLoggingFormatD614C37E": {
268+
"Type": "AWS::Lambda::Function",
269+
"Properties": {
270+
"Code": {
271+
"ZipFile": "foo"
272+
},
273+
"Handler": "index.handler",
274+
"LoggingConfig": {
275+
"LogFormat": "Text"
276+
},
277+
"Role": {
278+
"Fn::GetAtt": [
279+
"LambdaWithTextLoggingFormatServiceRole3ADC91E1",
280+
"Arn"
281+
]
282+
},
283+
"Runtime": "nodejs18.x"
284+
},
285+
"DependsOn": [
286+
"LambdaWithTextLoggingFormatServiceRole3ADC91E1"
287+
]
288+
},
289+
"LambdaWithJSONLoggingFormatServiceRole0B3D5672": {
290+
"Type": "AWS::IAM::Role",
291+
"Properties": {
292+
"AssumeRolePolicyDocument": {
293+
"Statement": [
294+
{
295+
"Action": "sts:AssumeRole",
296+
"Effect": "Allow",
297+
"Principal": {
298+
"Service": "lambda.amazonaws.com"
299+
}
300+
}
301+
],
302+
"Version": "2012-10-17"
303+
},
304+
"ManagedPolicyArns": [
305+
{
306+
"Fn::Join": [
307+
"",
308+
[
309+
"arn:",
310+
{
311+
"Ref": "AWS::Partition"
312+
},
313+
":iam::aws:policy/service-role/AWSLambdaBasicExecutionRole"
314+
]
315+
]
316+
}
317+
]
318+
}
319+
},
320+
"LambdaWithJSONLoggingFormatFA0D6903": {
321+
"Type": "AWS::Lambda::Function",
322+
"Properties": {
323+
"Code": {
324+
"ZipFile": "foo"
325+
},
326+
"Handler": "index.handler",
327+
"LoggingConfig": {
328+
"LogFormat": "JSON"
329+
},
330+
"Role": {
331+
"Fn::GetAtt": [
332+
"LambdaWithJSONLoggingFormatServiceRole0B3D5672",
333+
"Arn"
334+
]
335+
},
336+
"Runtime": "nodejs18.x"
337+
},
338+
"DependsOn": [
339+
"LambdaWithJSONLoggingFormatServiceRole0B3D5672"
340+
]
341+
},
236342
"LambdaWithLogLevelServiceRole90A45743": {
237343
"Type": "AWS::IAM::Role",
238344
"Properties": {

packages/@aws-cdk-testing/framework-integ/test/aws-lambda/test/integ.logging-config.js.snapshot/cdk.out

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-lambda/test/integ.logging-config.js.snapshot/integ.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-lambda/test/integ.logging-config.js.snapshot/lambdaloggingconfigDefaultTestDeployAssert24012B25.assets.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-lambda/test/integ.logging-config.js.snapshot/manifest.json

+26-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)