Skip to content

Commit 75ebf9b

Browse files
authored
chore(codepipeline-actions): bump up the solutionStack in the integ test (#28799)
Currently, the solutionStack of Elastic Beanstalk that is specified is out of date, causing integ tests to fail. ``` "No Solution Stack named '64bit Amazon Linux 2023 v6.0.2 running Node.js 18' found. (Service: ElasticBeanstalk, Status Code: 400, Request ID: 625a591c-9bb2-4c7c-9404-cf192fdae9bb)" ``` It may be better in the future that integ-test can always deploy using the latest version using the custom resource. (It may be difficult to use AwsCustomResource because the size of the `SolutionStacks` (array) property alone is 4KB.) https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-elastic-beanstalk/Interface/ListAvailableSolutionStacksResultMessage/ ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 7718ab2 commit 75ebf9b

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 4 additions & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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',

0 commit comments

Comments
 (0)