Skip to content

Commit 4b96edd

Browse files
authored
Merge branch 'main' into integtest-eventbridge
2 parents 77299ae + 71cfd60 commit 4b96edd

File tree

13 files changed

+167
-1541
lines changed

13 files changed

+167
-1541
lines changed

.github/workflows/security-guardian.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Security Guardian
22
on:
3-
pull_request_target: {}
3+
pull_request: {}
44

55
jobs:
66
log-skip:

.github/workflows/security-report.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
permissions:
1111
checks: write
1212
pull-requests: write
13-
id-token: write
1413
actions: read
1514
steps:
1615
- name: Download artifacts

packages/@aws-cdk-testing/framework-integ/test/pipelines/test/integ.pipeline-with-variables.js.snapshot/VariablePipelineStack.assets.json

Lines changed: 3 additions & 3 deletions
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/pipelines/test/integ.pipeline-with-variables.js.snapshot/VariablePipelineStack.template.json

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,14 @@
142142
"CustomS3AutoDeleteObjectsCustomResourceProviderRole3B1BD092"
143143
]
144144
},
145+
"Fleet30813DF3": {
146+
"Type": "AWS::CodeBuild::Fleet",
147+
"Properties": {
148+
"BaseCapacity": 1,
149+
"ComputeType": "BUILD_GENERAL1_SMALL",
150+
"EnvironmentType": "LINUX_CONTAINER"
151+
}
152+
},
145153
"PipelineArtifactsBucketAEA9A052": {
146154
"Type": "AWS::S3::Bucket",
147155
"Properties": {
@@ -728,7 +736,29 @@
728736
"Description": "Pipeline step VariablePipelineStack/Pipeline/Build/Synth",
729737
"EncryptionKey": "alias/aws/s3",
730738
"Environment": {
739+
"Certificate": {
740+
"Fn::Join": [
741+
"",
742+
[
743+
{
744+
"Fn::GetAtt": [
745+
"SourceBucketDDD2130A",
746+
"Arn"
747+
]
748+
},
749+
"/my-certificate.pem"
750+
]
751+
]
752+
},
731753
"ComputeType": "BUILD_GENERAL1_SMALL",
754+
"Fleet": {
755+
"FleetArn": {
756+
"Fn::GetAtt": [
757+
"Fleet30813DF3",
758+
"Arn"
759+
]
760+
}
761+
},
732762
"Image": "aws/codebuild/standard:7.0",
733763
"ImagePullCredentialsType": "CODEBUILD",
734764
"PrivilegedMode": false,
@@ -962,7 +992,29 @@
962992
"Description": "Pipeline step VariablePipelineStack/Pipeline/MyWave/Produce",
963993
"EncryptionKey": "alias/aws/s3",
964994
"Environment": {
995+
"Certificate": {
996+
"Fn::Join": [
997+
"",
998+
[
999+
{
1000+
"Fn::GetAtt": [
1001+
"SourceBucketDDD2130A",
1002+
"Arn"
1003+
]
1004+
},
1005+
"/my-certificate.pem"
1006+
]
1007+
]
1008+
},
9651009
"ComputeType": "BUILD_GENERAL1_SMALL",
1010+
"Fleet": {
1011+
"FleetArn": {
1012+
"Fn::GetAtt": [
1013+
"Fleet30813DF3",
1014+
"Arn"
1015+
]
1016+
}
1017+
},
9661018
"Image": "aws/codebuild/standard:7.0",
9671019
"ImagePullCredentialsType": "CODEBUILD",
9681020
"PrivilegedMode": false,
@@ -1196,7 +1248,29 @@
11961248
"Description": "Pipeline step VariablePipelineStack/Pipeline/MyWave/Consume",
11971249
"EncryptionKey": "alias/aws/s3",
11981250
"Environment": {
1251+
"Certificate": {
1252+
"Fn::Join": [
1253+
"",
1254+
[
1255+
{
1256+
"Fn::GetAtt": [
1257+
"SourceBucketDDD2130A",
1258+
"Arn"
1259+
]
1260+
},
1261+
"/my-certificate.pem"
1262+
]
1263+
]
1264+
},
11991265
"ComputeType": "BUILD_GENERAL1_SMALL",
1266+
"Fleet": {
1267+
"FleetArn": {
1268+
"Fn::GetAtt": [
1269+
"Fleet30813DF3",
1270+
"Arn"
1271+
]
1272+
}
1273+
},
12001274
"Image": "aws/codebuild/standard:7.0",
12011275
"ImagePullCredentialsType": "CODEBUILD",
12021276
"PrivilegedMode": false,

packages/@aws-cdk-testing/framework-integ/test/pipelines/test/integ.pipeline-with-variables.js.snapshot/integ.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/pipelines/test/integ.pipeline-with-variables.js.snapshot/manifest.json

Lines changed: 36 additions & 39 deletions
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/pipelines/test/integ.pipeline-with-variables.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/pipelines/test/integ.pipeline-with-variables.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,19 @@ class PipelineStack extends Stack {
2323
// }),
2424
commands: ['mkdir cdk.out', 'touch cdk.out/dummy'],
2525
}),
26+
codeBuildDefaults: {
27+
buildEnvironment: {
28+
fleet: new codebuild.Fleet(this, 'Fleet', {
29+
baseCapacity: 1,
30+
computeType: codebuild.FleetComputeType.SMALL,
31+
environmentType: codebuild.EnvironmentType.LINUX_CONTAINER,
32+
}),
33+
certificate: {
34+
bucket: sourceBucket,
35+
objectKey: 'my-certificate.pem',
36+
},
37+
},
38+
},
2639
selfMutation: false,
2740
});
2841

packages/@aws-cdk/custom-resource-handlers/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,3 @@ scripts/*.d.ts
3232

3333
!lib/aws-certificatemanager/dns-validated-certificate-handler/index.js
3434
!test/aws-certificatemanager/dns-validated-certificate-handler.test.js
35-
!lib/aws-cloudfront/edge-function/index.js

0 commit comments

Comments
 (0)