@cloudsnorkel/cdk-github-runners 0.9.6 → 0.9.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitattributes +2 -0
- package/.jsii +155 -115
- package/API.md +46 -9
- package/assets/delete-runner.lambda/index.js +2668 -5183
- package/assets/docker-images/lambda/linux-arm64/runner.sh +1 -1
- package/assets/docker-images/lambda/linux-x64/runner.sh +1 -1
- package/assets/idle-runner-repear.lambda/index.js +20062 -0
- package/assets/image-builders/aws-image-builder/versioner.lambda/index.js +69 -63
- package/assets/setup.lambda/index.html +14 -14
- package/assets/setup.lambda/index.js +102 -153
- package/assets/status.lambda/index.js +2610 -5097
- package/assets/token-retriever.lambda/index.js +2669 -5176
- package/assets/webhook-handler.lambda/index.js +1 -1
- package/lib/access.d.ts +9 -1
- package/lib/access.js +46 -4
- package/lib/delete-runner.lambda.js +7 -35
- package/lib/idle-runner-repear-function.d.ts +13 -0
- package/lib/idle-runner-repear-function.js +23 -0
- package/lib/idle-runner-repear.lambda.d.ts +1 -0
- package/lib/idle-runner-repear.lambda.js +67 -0
- package/lib/image-builders/api.js +1 -1
- package/lib/image-builders/aws-image-builder/builder.js +4 -7
- package/lib/image-builders/aws-image-builder/delete-ami.lambda.js +1 -3
- package/lib/image-builders/aws-image-builder/deprecated/ami.js +1 -1
- package/lib/image-builders/aws-image-builder/deprecated/container.d.ts +1 -1
- package/lib/image-builders/aws-image-builder/deprecated/container.js +9 -12
- package/lib/image-builders/aws-image-builder/deprecated/linux-components.js +1 -1
- package/lib/image-builders/aws-image-builder/deprecated/windows-components.js +1 -1
- package/lib/image-builders/aws-image-builder/filter-failed-builds.lambda.js +1 -2
- package/lib/image-builders/aws-image-builder/reaper.lambda.js +1 -3
- package/lib/image-builders/aws-image-builder/versioner.lambda.js +1 -3
- package/lib/image-builders/codebuild-deprecated.d.ts +1 -1
- package/lib/image-builders/codebuild-deprecated.js +15 -19
- package/lib/image-builders/codebuild.js +5 -8
- package/lib/image-builders/components.js +1 -1
- package/lib/image-builders/static.d.ts +1 -1
- package/lib/image-builders/static.js +7 -6
- package/lib/{github.d.ts → lambda-github.d.ts} +14 -0
- package/lib/lambda-github.js +69 -0
- package/lib/lambda-helpers.d.ts +0 -1
- package/lib/lambda-helpers.js +1 -2
- package/lib/providers/build-image.lambda.js +1 -3
- package/lib/providers/codebuild.js +5 -5
- package/lib/providers/common.d.ts +6 -0
- package/lib/providers/common.js +4 -4
- package/lib/providers/ec2.js +5 -5
- package/lib/providers/ecs.d.ts +6 -2
- package/lib/providers/ecs.js +64 -32
- package/lib/providers/fargate.js +5 -5
- package/lib/providers/lambda.js +12 -3
- package/lib/providers/update-lambda.lambda.js +1 -2
- package/lib/runner.d.ts +12 -1
- package/lib/runner.js +41 -17
- package/lib/secrets.js +1 -1
- package/lib/setup.lambda.js +3 -4
- package/lib/status.lambda.js +4 -6
- package/lib/token-retriever.lambda.js +3 -3
- package/lib/webhook-handler.lambda.js +2 -3
- package/package.json +12 -10
- package/lib/github.js +0 -50
package/.jsii
CHANGED
|
@@ -3114,7 +3114,7 @@
|
|
|
3114
3114
|
"stability": "experimental"
|
|
3115
3115
|
},
|
|
3116
3116
|
"homepage": "https://github.com/CloudSnorkel/cdk-github-runners.git",
|
|
3117
|
-
"jsiiVersion": "5.0.
|
|
3117
|
+
"jsiiVersion": "5.0.7 (build 5782cd5)",
|
|
3118
3118
|
"keywords": [
|
|
3119
3119
|
"aws",
|
|
3120
3120
|
"aws-cdk",
|
|
@@ -3851,7 +3851,7 @@
|
|
|
3851
3851
|
"immutable": true,
|
|
3852
3852
|
"locationInModule": {
|
|
3853
3853
|
"filename": "src/access.ts",
|
|
3854
|
-
"line":
|
|
3854
|
+
"line": 26
|
|
3855
3855
|
},
|
|
3856
3856
|
"name": "allowedIps",
|
|
3857
3857
|
"optional": true,
|
|
@@ -3874,7 +3874,7 @@
|
|
|
3874
3874
|
"immutable": true,
|
|
3875
3875
|
"locationInModule": {
|
|
3876
3876
|
"filename": "src/access.ts",
|
|
3877
|
-
"line":
|
|
3877
|
+
"line": 38
|
|
3878
3878
|
},
|
|
3879
3879
|
"name": "allowedSecurityGroups",
|
|
3880
3880
|
"optional": true,
|
|
@@ -3891,18 +3891,41 @@
|
|
|
3891
3891
|
"abstract": true,
|
|
3892
3892
|
"docs": {
|
|
3893
3893
|
"stability": "experimental",
|
|
3894
|
-
"summary": "
|
|
3894
|
+
"summary": "Create a private API Gateway and allow access from the specified VPC."
|
|
3895
3895
|
},
|
|
3896
3896
|
"immutable": true,
|
|
3897
3897
|
"locationInModule": {
|
|
3898
3898
|
"filename": "src/access.ts",
|
|
3899
|
-
"line":
|
|
3899
|
+
"line": 31
|
|
3900
3900
|
},
|
|
3901
3901
|
"name": "allowedVpc",
|
|
3902
3902
|
"optional": true,
|
|
3903
3903
|
"type": {
|
|
3904
3904
|
"fqn": "aws-cdk-lib.aws_ec2.IVpc"
|
|
3905
3905
|
}
|
|
3906
|
+
},
|
|
3907
|
+
{
|
|
3908
|
+
"abstract": true,
|
|
3909
|
+
"docs": {
|
|
3910
|
+
"remarks": "Use this to make use of existing VPC endpoints. The VPC endpoint must point to `ec2.InterfaceVpcEndpointAwsService.APIGATEWAY`.\n\nNo other settings are supported when using this option.",
|
|
3911
|
+
"stability": "experimental",
|
|
3912
|
+
"summary": "Create a private API Gateway and allow access from the specified VPC endpoints."
|
|
3913
|
+
},
|
|
3914
|
+
"immutable": true,
|
|
3915
|
+
"locationInModule": {
|
|
3916
|
+
"filename": "src/access.ts",
|
|
3917
|
+
"line": 17
|
|
3918
|
+
},
|
|
3919
|
+
"name": "allowedVpcEndpoints",
|
|
3920
|
+
"optional": true,
|
|
3921
|
+
"type": {
|
|
3922
|
+
"collection": {
|
|
3923
|
+
"elementtype": {
|
|
3924
|
+
"fqn": "aws-cdk-lib.aws_ec2.IVpcEndpoint"
|
|
3925
|
+
},
|
|
3926
|
+
"kind": "array"
|
|
3927
|
+
}
|
|
3928
|
+
}
|
|
3906
3929
|
}
|
|
3907
3930
|
],
|
|
3908
3931
|
"symbolId": "src/access:ApiGatewayAccessProps"
|
|
@@ -4271,7 +4294,7 @@
|
|
|
4271
4294
|
},
|
|
4272
4295
|
"locationInModule": {
|
|
4273
4296
|
"filename": "src/image-builders/codebuild-deprecated.ts",
|
|
4274
|
-
"line":
|
|
4297
|
+
"line": 529
|
|
4275
4298
|
},
|
|
4276
4299
|
"name": "bindAmi",
|
|
4277
4300
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerImageBuilder",
|
|
@@ -4340,7 +4363,7 @@
|
|
|
4340
4363
|
"immutable": true,
|
|
4341
4364
|
"locationInModule": {
|
|
4342
4365
|
"filename": "src/image-builders/codebuild-deprecated.ts",
|
|
4343
|
-
"line":
|
|
4366
|
+
"line": 523
|
|
4344
4367
|
},
|
|
4345
4368
|
"name": "connections",
|
|
4346
4369
|
"type": {
|
|
@@ -4834,7 +4857,7 @@
|
|
|
4834
4857
|
},
|
|
4835
4858
|
"locationInModule": {
|
|
4836
4859
|
"filename": "src/providers/common.ts",
|
|
4837
|
-
"line":
|
|
4860
|
+
"line": 474
|
|
4838
4861
|
},
|
|
4839
4862
|
"name": "addRetry",
|
|
4840
4863
|
"parameters": [
|
|
@@ -4923,7 +4946,7 @@
|
|
|
4923
4946
|
},
|
|
4924
4947
|
"locationInModule": {
|
|
4925
4948
|
"filename": "src/providers/common.ts",
|
|
4926
|
-
"line":
|
|
4949
|
+
"line": 460
|
|
4927
4950
|
},
|
|
4928
4951
|
"name": "labelsFromProperties",
|
|
4929
4952
|
"parameters": [
|
|
@@ -5452,7 +5475,7 @@
|
|
|
5452
5475
|
},
|
|
5453
5476
|
"locationInModule": {
|
|
5454
5477
|
"filename": "src/image-builders/aws-image-builder/deprecated/container.ts",
|
|
5455
|
-
"line":
|
|
5478
|
+
"line": 340
|
|
5456
5479
|
},
|
|
5457
5480
|
"name": "bindAmi",
|
|
5458
5481
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerImageBuilder",
|
|
@@ -6164,7 +6187,7 @@
|
|
|
6164
6187
|
},
|
|
6165
6188
|
"locationInModule": {
|
|
6166
6189
|
"filename": "src/providers/common.ts",
|
|
6167
|
-
"line":
|
|
6190
|
+
"line": 474
|
|
6168
6191
|
},
|
|
6169
6192
|
"name": "addRetry",
|
|
6170
6193
|
"parameters": [
|
|
@@ -6253,7 +6276,7 @@
|
|
|
6253
6276
|
},
|
|
6254
6277
|
"locationInModule": {
|
|
6255
6278
|
"filename": "src/providers/common.ts",
|
|
6256
|
-
"line":
|
|
6279
|
+
"line": 460
|
|
6257
6280
|
},
|
|
6258
6281
|
"name": "labelsFromProperties",
|
|
6259
6282
|
"parameters": [
|
|
@@ -6665,7 +6688,7 @@
|
|
|
6665
6688
|
},
|
|
6666
6689
|
"locationInModule": {
|
|
6667
6690
|
"filename": "src/providers/ecs.ts",
|
|
6668
|
-
"line":
|
|
6691
|
+
"line": 301
|
|
6669
6692
|
},
|
|
6670
6693
|
"parameters": [
|
|
6671
6694
|
{
|
|
@@ -6695,7 +6718,7 @@
|
|
|
6695
6718
|
"kind": "class",
|
|
6696
6719
|
"locationInModule": {
|
|
6697
6720
|
"filename": "src/providers/ecs.ts",
|
|
6698
|
-
"line":
|
|
6721
|
+
"line": 199
|
|
6699
6722
|
},
|
|
6700
6723
|
"methods": [
|
|
6701
6724
|
{
|
|
@@ -6706,7 +6729,7 @@
|
|
|
6706
6729
|
},
|
|
6707
6730
|
"locationInModule": {
|
|
6708
6731
|
"filename": "src/providers/ecs.ts",
|
|
6709
|
-
"line":
|
|
6732
|
+
"line": 212
|
|
6710
6733
|
},
|
|
6711
6734
|
"name": "imageBuilder",
|
|
6712
6735
|
"parameters": [
|
|
@@ -6743,7 +6766,7 @@
|
|
|
6743
6766
|
},
|
|
6744
6767
|
"locationInModule": {
|
|
6745
6768
|
"filename": "src/providers/common.ts",
|
|
6746
|
-
"line":
|
|
6769
|
+
"line": 474
|
|
6747
6770
|
},
|
|
6748
6771
|
"name": "addRetry",
|
|
6749
6772
|
"parameters": [
|
|
@@ -6784,7 +6807,7 @@
|
|
|
6784
6807
|
},
|
|
6785
6808
|
"locationInModule": {
|
|
6786
6809
|
"filename": "src/providers/ecs.ts",
|
|
6787
|
-
"line":
|
|
6810
|
+
"line": 497
|
|
6788
6811
|
},
|
|
6789
6812
|
"name": "getStepFunctionTask",
|
|
6790
6813
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -6813,7 +6836,7 @@
|
|
|
6813
6836
|
},
|
|
6814
6837
|
"locationInModule": {
|
|
6815
6838
|
"filename": "src/providers/ecs.ts",
|
|
6816
|
-
"line":
|
|
6839
|
+
"line": 546
|
|
6817
6840
|
},
|
|
6818
6841
|
"name": "grantStateMachine",
|
|
6819
6842
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -6832,7 +6855,7 @@
|
|
|
6832
6855
|
},
|
|
6833
6856
|
"locationInModule": {
|
|
6834
6857
|
"filename": "src/providers/common.ts",
|
|
6835
|
-
"line":
|
|
6858
|
+
"line": 460
|
|
6836
6859
|
},
|
|
6837
6860
|
"name": "labelsFromProperties",
|
|
6838
6861
|
"parameters": [
|
|
@@ -6882,7 +6905,7 @@
|
|
|
6882
6905
|
},
|
|
6883
6906
|
"locationInModule": {
|
|
6884
6907
|
"filename": "src/providers/ecs.ts",
|
|
6885
|
-
"line":
|
|
6908
|
+
"line": 549
|
|
6886
6909
|
},
|
|
6887
6910
|
"name": "status",
|
|
6888
6911
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -6911,7 +6934,7 @@
|
|
|
6911
6934
|
"immutable": true,
|
|
6912
6935
|
"locationInModule": {
|
|
6913
6936
|
"filename": "src/providers/ecs.ts",
|
|
6914
|
-
"line":
|
|
6937
|
+
"line": 277
|
|
6915
6938
|
},
|
|
6916
6939
|
"name": "connections",
|
|
6917
6940
|
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
@@ -6927,7 +6950,7 @@
|
|
|
6927
6950
|
"immutable": true,
|
|
6928
6951
|
"locationInModule": {
|
|
6929
6952
|
"filename": "src/providers/ecs.ts",
|
|
6930
|
-
"line":
|
|
6953
|
+
"line": 272
|
|
6931
6954
|
},
|
|
6932
6955
|
"name": "grantPrincipal",
|
|
6933
6956
|
"overrides": "aws-cdk-lib.aws_iam.IGrantable",
|
|
@@ -6943,7 +6966,7 @@
|
|
|
6943
6966
|
"immutable": true,
|
|
6944
6967
|
"locationInModule": {
|
|
6945
6968
|
"filename": "src/providers/ecs.ts",
|
|
6946
|
-
"line":
|
|
6969
|
+
"line": 252
|
|
6947
6970
|
},
|
|
6948
6971
|
"name": "labels",
|
|
6949
6972
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -6965,7 +6988,7 @@
|
|
|
6965
6988
|
"immutable": true,
|
|
6966
6989
|
"locationInModule": {
|
|
6967
6990
|
"filename": "src/providers/ecs.ts",
|
|
6968
|
-
"line":
|
|
6991
|
+
"line": 289
|
|
6969
6992
|
},
|
|
6970
6993
|
"name": "logGroup",
|
|
6971
6994
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -7231,15 +7254,32 @@
|
|
|
7231
7254
|
{
|
|
7232
7255
|
"abstract": true,
|
|
7233
7256
|
"docs": {
|
|
7234
|
-
"default": "
|
|
7257
|
+
"default": "false (true if spotMaxPrice is specified)",
|
|
7235
7258
|
"stability": "experimental",
|
|
7236
|
-
"summary": "Use spot capacity
|
|
7259
|
+
"summary": "Use spot capacity."
|
|
7237
7260
|
},
|
|
7238
7261
|
"immutable": true,
|
|
7239
7262
|
"locationInModule": {
|
|
7240
7263
|
"filename": "src/providers/ecs.ts",
|
|
7241
7264
|
"line": 156
|
|
7242
7265
|
},
|
|
7266
|
+
"name": "spot",
|
|
7267
|
+
"optional": true,
|
|
7268
|
+
"type": {
|
|
7269
|
+
"primitive": "boolean"
|
|
7270
|
+
}
|
|
7271
|
+
},
|
|
7272
|
+
{
|
|
7273
|
+
"abstract": true,
|
|
7274
|
+
"docs": {
|
|
7275
|
+
"stability": "experimental",
|
|
7276
|
+
"summary": "Maximum price for spot instances."
|
|
7277
|
+
},
|
|
7278
|
+
"immutable": true,
|
|
7279
|
+
"locationInModule": {
|
|
7280
|
+
"filename": "src/providers/ecs.ts",
|
|
7281
|
+
"line": 161
|
|
7282
|
+
},
|
|
7243
7283
|
"name": "spotMaxPrice",
|
|
7244
7284
|
"optional": true,
|
|
7245
7285
|
"type": {
|
|
@@ -7443,7 +7483,7 @@
|
|
|
7443
7483
|
},
|
|
7444
7484
|
"locationInModule": {
|
|
7445
7485
|
"filename": "src/providers/common.ts",
|
|
7446
|
-
"line":
|
|
7486
|
+
"line": 474
|
|
7447
7487
|
},
|
|
7448
7488
|
"name": "addRetry",
|
|
7449
7489
|
"parameters": [
|
|
@@ -7532,7 +7572,7 @@
|
|
|
7532
7572
|
},
|
|
7533
7573
|
"locationInModule": {
|
|
7534
7574
|
"filename": "src/providers/common.ts",
|
|
7535
|
-
"line":
|
|
7575
|
+
"line": 460
|
|
7536
7576
|
},
|
|
7537
7577
|
"name": "labelsFromProperties",
|
|
7538
7578
|
"parameters": [
|
|
@@ -8126,7 +8166,7 @@
|
|
|
8126
8166
|
},
|
|
8127
8167
|
"locationInModule": {
|
|
8128
8168
|
"filename": "src/runner.ts",
|
|
8129
|
-
"line":
|
|
8169
|
+
"line": 234
|
|
8130
8170
|
},
|
|
8131
8171
|
"parameters": [
|
|
8132
8172
|
{
|
|
@@ -8153,7 +8193,7 @@
|
|
|
8153
8193
|
"kind": "class",
|
|
8154
8194
|
"locationInModule": {
|
|
8155
8195
|
"filename": "src/runner.ts",
|
|
8156
|
-
"line":
|
|
8196
|
+
"line": 215
|
|
8157
8197
|
},
|
|
8158
8198
|
"methods": [
|
|
8159
8199
|
{
|
|
@@ -8164,7 +8204,7 @@
|
|
|
8164
8204
|
},
|
|
8165
8205
|
"locationInModule": {
|
|
8166
8206
|
"filename": "src/runner.ts",
|
|
8167
|
-
"line":
|
|
8207
|
+
"line": 664
|
|
8168
8208
|
},
|
|
8169
8209
|
"name": "failedImageBuildsTopic",
|
|
8170
8210
|
"returns": {
|
|
@@ -8181,7 +8221,7 @@
|
|
|
8181
8221
|
},
|
|
8182
8222
|
"locationInModule": {
|
|
8183
8223
|
"filename": "src/runner.ts",
|
|
8184
|
-
"line":
|
|
8224
|
+
"line": 646
|
|
8185
8225
|
},
|
|
8186
8226
|
"name": "metricFailed",
|
|
8187
8227
|
"parameters": [
|
|
@@ -8207,7 +8247,7 @@
|
|
|
8207
8247
|
},
|
|
8208
8248
|
"locationInModule": {
|
|
8209
8249
|
"filename": "src/runner.ts",
|
|
8210
|
-
"line":
|
|
8250
|
+
"line": 591
|
|
8211
8251
|
},
|
|
8212
8252
|
"name": "metricJobCompleted",
|
|
8213
8253
|
"parameters": [
|
|
@@ -8233,7 +8273,7 @@
|
|
|
8233
8273
|
},
|
|
8234
8274
|
"locationInModule": {
|
|
8235
8275
|
"filename": "src/runner.ts",
|
|
8236
|
-
"line":
|
|
8276
|
+
"line": 637
|
|
8237
8277
|
},
|
|
8238
8278
|
"name": "metricSucceeded",
|
|
8239
8279
|
"parameters": [
|
|
@@ -8259,7 +8299,7 @@
|
|
|
8259
8299
|
},
|
|
8260
8300
|
"locationInModule": {
|
|
8261
8301
|
"filename": "src/runner.ts",
|
|
8262
|
-
"line":
|
|
8302
|
+
"line": 653
|
|
8263
8303
|
},
|
|
8264
8304
|
"name": "metricTime",
|
|
8265
8305
|
"parameters": [
|
|
@@ -8288,7 +8328,7 @@
|
|
|
8288
8328
|
"immutable": true,
|
|
8289
8329
|
"locationInModule": {
|
|
8290
8330
|
"filename": "src/runner.ts",
|
|
8291
|
-
"line":
|
|
8331
|
+
"line": 219
|
|
8292
8332
|
},
|
|
8293
8333
|
"name": "providers",
|
|
8294
8334
|
"type": {
|
|
@@ -8308,7 +8348,7 @@
|
|
|
8308
8348
|
"immutable": true,
|
|
8309
8349
|
"locationInModule": {
|
|
8310
8350
|
"filename": "src/runner.ts",
|
|
8311
|
-
"line":
|
|
8351
|
+
"line": 224
|
|
8312
8352
|
},
|
|
8313
8353
|
"name": "secrets",
|
|
8314
8354
|
"type": {
|
|
@@ -8322,7 +8362,7 @@
|
|
|
8322
8362
|
"immutable": true,
|
|
8323
8363
|
"locationInModule": {
|
|
8324
8364
|
"filename": "src/runner.ts",
|
|
8325
|
-
"line":
|
|
8365
|
+
"line": 234
|
|
8326
8366
|
},
|
|
8327
8367
|
"name": "props",
|
|
8328
8368
|
"optional": true,
|
|
@@ -8344,7 +8384,7 @@
|
|
|
8344
8384
|
"kind": "interface",
|
|
8345
8385
|
"locationInModule": {
|
|
8346
8386
|
"filename": "src/runner.ts",
|
|
8347
|
-
"line":
|
|
8387
|
+
"line": 37
|
|
8348
8388
|
},
|
|
8349
8389
|
"name": "GitHubRunnersProps",
|
|
8350
8390
|
"properties": [
|
|
@@ -8359,7 +8399,7 @@
|
|
|
8359
8399
|
"immutable": true,
|
|
8360
8400
|
"locationInModule": {
|
|
8361
8401
|
"filename": "src/runner.ts",
|
|
8362
|
-
"line":
|
|
8402
|
+
"line": 69
|
|
8363
8403
|
},
|
|
8364
8404
|
"name": "allowPublicSubnet",
|
|
8365
8405
|
"optional": true,
|
|
@@ -8377,7 +8417,7 @@
|
|
|
8377
8417
|
"immutable": true,
|
|
8378
8418
|
"locationInModule": {
|
|
8379
8419
|
"filename": "src/runner.ts",
|
|
8380
|
-
"line":
|
|
8420
|
+
"line": 99
|
|
8381
8421
|
},
|
|
8382
8422
|
"name": "extraCertificates",
|
|
8383
8423
|
"optional": true,
|
|
@@ -8388,7 +8428,7 @@
|
|
|
8388
8428
|
{
|
|
8389
8429
|
"abstract": true,
|
|
8390
8430
|
"docs": {
|
|
8391
|
-
"default": "
|
|
8431
|
+
"default": "5 minutes",
|
|
8392
8432
|
"remarks": "If the user cancelled the job, or if another runner stole it, this stops the runner to avoid wasting resources.",
|
|
8393
8433
|
"stability": "experimental",
|
|
8394
8434
|
"summary": "Time to wait before stopping a runner that remains idle."
|
|
@@ -8396,7 +8436,7 @@
|
|
|
8396
8436
|
"immutable": true,
|
|
8397
8437
|
"locationInModule": {
|
|
8398
8438
|
"filename": "src/runner.ts",
|
|
8399
|
-
"line":
|
|
8439
|
+
"line": 106
|
|
8400
8440
|
},
|
|
8401
8441
|
"name": "idleTimeout",
|
|
8402
8442
|
"optional": true,
|
|
@@ -8414,7 +8454,7 @@
|
|
|
8414
8454
|
"immutable": true,
|
|
8415
8455
|
"locationInModule": {
|
|
8416
8456
|
"filename": "src/runner.ts",
|
|
8417
|
-
"line":
|
|
8457
|
+
"line": 113
|
|
8418
8458
|
},
|
|
8419
8459
|
"name": "logOptions",
|
|
8420
8460
|
"optional": true,
|
|
@@ -8433,7 +8473,7 @@
|
|
|
8433
8473
|
"immutable": true,
|
|
8434
8474
|
"locationInModule": {
|
|
8435
8475
|
"filename": "src/runner.ts",
|
|
8436
|
-
"line":
|
|
8476
|
+
"line": 43
|
|
8437
8477
|
},
|
|
8438
8478
|
"name": "providers",
|
|
8439
8479
|
"optional": true,
|
|
@@ -8456,7 +8496,7 @@
|
|
|
8456
8496
|
"immutable": true,
|
|
8457
8497
|
"locationInModule": {
|
|
8458
8498
|
"filename": "src/runner.ts",
|
|
8459
|
-
"line":
|
|
8499
|
+
"line": 74
|
|
8460
8500
|
},
|
|
8461
8501
|
"name": "securityGroup",
|
|
8462
8502
|
"optional": true,
|
|
@@ -8475,7 +8515,7 @@
|
|
|
8475
8515
|
"immutable": true,
|
|
8476
8516
|
"locationInModule": {
|
|
8477
8517
|
"filename": "src/runner.ts",
|
|
8478
|
-
"line":
|
|
8518
|
+
"line": 120
|
|
8479
8519
|
},
|
|
8480
8520
|
"name": "setupAccess",
|
|
8481
8521
|
"optional": true,
|
|
@@ -8494,7 +8534,7 @@
|
|
|
8494
8534
|
"immutable": true,
|
|
8495
8535
|
"locationInModule": {
|
|
8496
8536
|
"filename": "src/runner.ts",
|
|
8497
|
-
"line":
|
|
8537
|
+
"line": 139
|
|
8498
8538
|
},
|
|
8499
8539
|
"name": "statusAccess",
|
|
8500
8540
|
"optional": true,
|
|
@@ -8505,14 +8545,14 @@
|
|
|
8505
8545
|
{
|
|
8506
8546
|
"abstract": true,
|
|
8507
8547
|
"docs": {
|
|
8508
|
-
"remarks": "
|
|
8548
|
+
"remarks": "Make sure the selected VPC and subnets have access to the following with either NAT Gateway or VPC Endpoints:\n* GitHub Enterprise Server\n* Secrets Manager\n* SQS\n* Step Functions\n* CloudFormation (status function only)\n* EC2 (status function only)\n* ECR (status function only)",
|
|
8509
8549
|
"stability": "experimental",
|
|
8510
|
-
"summary": "VPC used for all management functions."
|
|
8550
|
+
"summary": "VPC used for all management functions. Use this with GitHub Enterprise Server hosted that's inaccessible from outside the VPC."
|
|
8511
8551
|
},
|
|
8512
8552
|
"immutable": true,
|
|
8513
8553
|
"locationInModule": {
|
|
8514
8554
|
"filename": "src/runner.ts",
|
|
8515
|
-
"line":
|
|
8555
|
+
"line": 57
|
|
8516
8556
|
},
|
|
8517
8557
|
"name": "vpc",
|
|
8518
8558
|
"optional": true,
|
|
@@ -8530,7 +8570,7 @@
|
|
|
8530
8570
|
"immutable": true,
|
|
8531
8571
|
"locationInModule": {
|
|
8532
8572
|
"filename": "src/runner.ts",
|
|
8533
|
-
"line":
|
|
8573
|
+
"line": 62
|
|
8534
8574
|
},
|
|
8535
8575
|
"name": "vpcSubnets",
|
|
8536
8576
|
"optional": true,
|
|
@@ -8549,7 +8589,7 @@
|
|
|
8549
8589
|
"immutable": true,
|
|
8550
8590
|
"locationInModule": {
|
|
8551
8591
|
"filename": "src/runner.ts",
|
|
8552
|
-
"line":
|
|
8592
|
+
"line": 132
|
|
8553
8593
|
},
|
|
8554
8594
|
"name": "webhookAccess",
|
|
8555
8595
|
"optional": true,
|
|
@@ -8570,7 +8610,7 @@
|
|
|
8570
8610
|
"kind": "interface",
|
|
8571
8611
|
"locationInModule": {
|
|
8572
8612
|
"filename": "src/providers/common.ts",
|
|
8573
|
-
"line":
|
|
8613
|
+
"line": 345
|
|
8574
8614
|
},
|
|
8575
8615
|
"name": "IRunnerAmiStatus",
|
|
8576
8616
|
"properties": [
|
|
@@ -8583,7 +8623,7 @@
|
|
|
8583
8623
|
"immutable": true,
|
|
8584
8624
|
"locationInModule": {
|
|
8585
8625
|
"filename": "src/providers/common.ts",
|
|
8586
|
-
"line":
|
|
8626
|
+
"line": 349
|
|
8587
8627
|
},
|
|
8588
8628
|
"name": "launchTemplate",
|
|
8589
8629
|
"type": {
|
|
@@ -8599,7 +8639,7 @@
|
|
|
8599
8639
|
"immutable": true,
|
|
8600
8640
|
"locationInModule": {
|
|
8601
8641
|
"filename": "src/providers/common.ts",
|
|
8602
|
-
"line":
|
|
8642
|
+
"line": 354
|
|
8603
8643
|
},
|
|
8604
8644
|
"name": "amiBuilderLogGroup",
|
|
8605
8645
|
"optional": true,
|
|
@@ -8674,7 +8714,7 @@
|
|
|
8674
8714
|
"kind": "interface",
|
|
8675
8715
|
"locationInModule": {
|
|
8676
8716
|
"filename": "src/providers/common.ts",
|
|
8677
|
-
"line":
|
|
8717
|
+
"line": 325
|
|
8678
8718
|
},
|
|
8679
8719
|
"name": "IRunnerImageStatus",
|
|
8680
8720
|
"properties": [
|
|
@@ -8687,7 +8727,7 @@
|
|
|
8687
8727
|
"immutable": true,
|
|
8688
8728
|
"locationInModule": {
|
|
8689
8729
|
"filename": "src/providers/common.ts",
|
|
8690
|
-
"line":
|
|
8730
|
+
"line": 329
|
|
8691
8731
|
},
|
|
8692
8732
|
"name": "imageRepository",
|
|
8693
8733
|
"type": {
|
|
@@ -8703,7 +8743,7 @@
|
|
|
8703
8743
|
"immutable": true,
|
|
8704
8744
|
"locationInModule": {
|
|
8705
8745
|
"filename": "src/providers/common.ts",
|
|
8706
|
-
"line":
|
|
8746
|
+
"line": 334
|
|
8707
8747
|
},
|
|
8708
8748
|
"name": "imageTag",
|
|
8709
8749
|
"type": {
|
|
@@ -8719,7 +8759,7 @@
|
|
|
8719
8759
|
"immutable": true,
|
|
8720
8760
|
"locationInModule": {
|
|
8721
8761
|
"filename": "src/providers/common.ts",
|
|
8722
|
-
"line":
|
|
8762
|
+
"line": 339
|
|
8723
8763
|
},
|
|
8724
8764
|
"name": "imageBuilderLogGroup",
|
|
8725
8765
|
"optional": true,
|
|
@@ -8746,7 +8786,7 @@
|
|
|
8746
8786
|
"kind": "interface",
|
|
8747
8787
|
"locationInModule": {
|
|
8748
8788
|
"filename": "src/providers/common.ts",
|
|
8749
|
-
"line":
|
|
8789
|
+
"line": 405
|
|
8750
8790
|
},
|
|
8751
8791
|
"methods": [
|
|
8752
8792
|
{
|
|
@@ -8758,7 +8798,7 @@
|
|
|
8758
8798
|
},
|
|
8759
8799
|
"locationInModule": {
|
|
8760
8800
|
"filename": "src/providers/common.ts",
|
|
8761
|
-
"line":
|
|
8801
|
+
"line": 429
|
|
8762
8802
|
},
|
|
8763
8803
|
"name": "getStepFunctionTask",
|
|
8764
8804
|
"parameters": [
|
|
@@ -8787,7 +8827,7 @@
|
|
|
8787
8827
|
},
|
|
8788
8828
|
"locationInModule": {
|
|
8789
8829
|
"filename": "src/providers/common.ts",
|
|
8790
|
-
"line":
|
|
8830
|
+
"line": 437
|
|
8791
8831
|
},
|
|
8792
8832
|
"name": "grantStateMachine",
|
|
8793
8833
|
"parameters": [
|
|
@@ -8811,7 +8851,7 @@
|
|
|
8811
8851
|
},
|
|
8812
8852
|
"locationInModule": {
|
|
8813
8853
|
"filename": "src/providers/common.ts",
|
|
8814
|
-
"line":
|
|
8854
|
+
"line": 444
|
|
8815
8855
|
},
|
|
8816
8856
|
"name": "status",
|
|
8817
8857
|
"parameters": [
|
|
@@ -8844,7 +8884,7 @@
|
|
|
8844
8884
|
"immutable": true,
|
|
8845
8885
|
"locationInModule": {
|
|
8846
8886
|
"filename": "src/providers/common.ts",
|
|
8847
|
-
"line":
|
|
8887
|
+
"line": 413
|
|
8848
8888
|
},
|
|
8849
8889
|
"name": "labels",
|
|
8850
8890
|
"type": {
|
|
@@ -8866,7 +8906,7 @@
|
|
|
8866
8906
|
"immutable": true,
|
|
8867
8907
|
"locationInModule": {
|
|
8868
8908
|
"filename": "src/providers/common.ts",
|
|
8869
|
-
"line":
|
|
8909
|
+
"line": 420
|
|
8870
8910
|
},
|
|
8871
8911
|
"name": "logGroup",
|
|
8872
8912
|
"type": {
|
|
@@ -8886,7 +8926,7 @@
|
|
|
8886
8926
|
"kind": "interface",
|
|
8887
8927
|
"locationInModule": {
|
|
8888
8928
|
"filename": "src/providers/common.ts",
|
|
8889
|
-
"line":
|
|
8929
|
+
"line": 360
|
|
8890
8930
|
},
|
|
8891
8931
|
"name": "IRunnerProviderStatus",
|
|
8892
8932
|
"properties": [
|
|
@@ -8899,7 +8939,7 @@
|
|
|
8899
8939
|
"immutable": true,
|
|
8900
8940
|
"locationInModule": {
|
|
8901
8941
|
"filename": "src/providers/common.ts",
|
|
8902
|
-
"line":
|
|
8942
|
+
"line": 369
|
|
8903
8943
|
},
|
|
8904
8944
|
"name": "labels",
|
|
8905
8945
|
"type": {
|
|
@@ -8920,7 +8960,7 @@
|
|
|
8920
8960
|
"immutable": true,
|
|
8921
8961
|
"locationInModule": {
|
|
8922
8962
|
"filename": "src/providers/common.ts",
|
|
8923
|
-
"line":
|
|
8963
|
+
"line": 364
|
|
8924
8964
|
},
|
|
8925
8965
|
"name": "type",
|
|
8926
8966
|
"type": {
|
|
@@ -8936,7 +8976,7 @@
|
|
|
8936
8976
|
"immutable": true,
|
|
8937
8977
|
"locationInModule": {
|
|
8938
8978
|
"filename": "src/providers/common.ts",
|
|
8939
|
-
"line":
|
|
8979
|
+
"line": 394
|
|
8940
8980
|
},
|
|
8941
8981
|
"name": "ami",
|
|
8942
8982
|
"optional": true,
|
|
@@ -8953,7 +8993,7 @@
|
|
|
8953
8993
|
"immutable": true,
|
|
8954
8994
|
"locationInModule": {
|
|
8955
8995
|
"filename": "src/providers/common.ts",
|
|
8956
|
-
"line":
|
|
8996
|
+
"line": 389
|
|
8957
8997
|
},
|
|
8958
8998
|
"name": "image",
|
|
8959
8999
|
"optional": true,
|
|
@@ -8970,7 +9010,7 @@
|
|
|
8970
9010
|
"immutable": true,
|
|
8971
9011
|
"locationInModule": {
|
|
8972
9012
|
"filename": "src/providers/common.ts",
|
|
8973
|
-
"line":
|
|
9013
|
+
"line": 399
|
|
8974
9014
|
},
|
|
8975
9015
|
"name": "logGroup",
|
|
8976
9016
|
"optional": true,
|
|
@@ -8987,7 +9027,7 @@
|
|
|
8987
9027
|
"immutable": true,
|
|
8988
9028
|
"locationInModule": {
|
|
8989
9029
|
"filename": "src/providers/common.ts",
|
|
8990
|
-
"line":
|
|
9030
|
+
"line": 384
|
|
8991
9031
|
},
|
|
8992
9032
|
"name": "roleArn",
|
|
8993
9033
|
"optional": true,
|
|
@@ -9004,7 +9044,7 @@
|
|
|
9004
9044
|
"immutable": true,
|
|
9005
9045
|
"locationInModule": {
|
|
9006
9046
|
"filename": "src/providers/common.ts",
|
|
9007
|
-
"line":
|
|
9047
|
+
"line": 379
|
|
9008
9048
|
},
|
|
9009
9049
|
"name": "securityGroups",
|
|
9010
9050
|
"optional": true,
|
|
@@ -9026,7 +9066,7 @@
|
|
|
9026
9066
|
"immutable": true,
|
|
9027
9067
|
"locationInModule": {
|
|
9028
9068
|
"filename": "src/providers/common.ts",
|
|
9029
|
-
"line":
|
|
9069
|
+
"line": 374
|
|
9030
9070
|
},
|
|
9031
9071
|
"name": "vpcArn",
|
|
9032
9072
|
"optional": true,
|
|
@@ -9408,7 +9448,7 @@
|
|
|
9408
9448
|
"kind": "class",
|
|
9409
9449
|
"locationInModule": {
|
|
9410
9450
|
"filename": "src/access.ts",
|
|
9411
|
-
"line":
|
|
9451
|
+
"line": 44
|
|
9412
9452
|
},
|
|
9413
9453
|
"methods": [
|
|
9414
9454
|
{
|
|
@@ -9419,7 +9459,7 @@
|
|
|
9419
9459
|
},
|
|
9420
9460
|
"locationInModule": {
|
|
9421
9461
|
"filename": "src/access.ts",
|
|
9422
|
-
"line":
|
|
9462
|
+
"line": 76
|
|
9423
9463
|
},
|
|
9424
9464
|
"name": "apiGateway",
|
|
9425
9465
|
"parameters": [
|
|
@@ -9446,7 +9486,7 @@
|
|
|
9446
9486
|
},
|
|
9447
9487
|
"locationInModule": {
|
|
9448
9488
|
"filename": "src/access.ts",
|
|
9449
|
-
"line":
|
|
9489
|
+
"line": 85
|
|
9450
9490
|
},
|
|
9451
9491
|
"name": "githubWebhookIps",
|
|
9452
9492
|
"returns": {
|
|
@@ -9469,7 +9509,7 @@
|
|
|
9469
9509
|
},
|
|
9470
9510
|
"locationInModule": {
|
|
9471
9511
|
"filename": "src/access.ts",
|
|
9472
|
-
"line":
|
|
9512
|
+
"line": 55
|
|
9473
9513
|
},
|
|
9474
9514
|
"name": "lambdaUrl",
|
|
9475
9515
|
"returns": {
|
|
@@ -9487,7 +9527,7 @@
|
|
|
9487
9527
|
},
|
|
9488
9528
|
"locationInModule": {
|
|
9489
9529
|
"filename": "src/access.ts",
|
|
9490
|
-
"line":
|
|
9530
|
+
"line": 48
|
|
9491
9531
|
},
|
|
9492
9532
|
"name": "noAccess",
|
|
9493
9533
|
"returns": {
|
|
@@ -9542,7 +9582,7 @@
|
|
|
9542
9582
|
"kind": "class",
|
|
9543
9583
|
"locationInModule": {
|
|
9544
9584
|
"filename": "src/providers/lambda.ts",
|
|
9545
|
-
"line":
|
|
9585
|
+
"line": 450
|
|
9546
9586
|
},
|
|
9547
9587
|
"name": "LambdaRunner",
|
|
9548
9588
|
"symbolId": "src/providers/lambda:LambdaRunner"
|
|
@@ -9640,7 +9680,7 @@
|
|
|
9640
9680
|
},
|
|
9641
9681
|
"locationInModule": {
|
|
9642
9682
|
"filename": "src/providers/common.ts",
|
|
9643
|
-
"line":
|
|
9683
|
+
"line": 474
|
|
9644
9684
|
},
|
|
9645
9685
|
"name": "addRetry",
|
|
9646
9686
|
"parameters": [
|
|
@@ -9681,7 +9721,7 @@
|
|
|
9681
9721
|
},
|
|
9682
9722
|
"locationInModule": {
|
|
9683
9723
|
"filename": "src/providers/lambda.ts",
|
|
9684
|
-
"line":
|
|
9724
|
+
"line": 304
|
|
9685
9725
|
},
|
|
9686
9726
|
"name": "getStepFunctionTask",
|
|
9687
9727
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -9710,7 +9750,7 @@
|
|
|
9710
9750
|
},
|
|
9711
9751
|
"locationInModule": {
|
|
9712
9752
|
"filename": "src/providers/lambda.ts",
|
|
9713
|
-
"line":
|
|
9753
|
+
"line": 367
|
|
9714
9754
|
},
|
|
9715
9755
|
"name": "grantStateMachine",
|
|
9716
9756
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -9729,7 +9769,7 @@
|
|
|
9729
9769
|
},
|
|
9730
9770
|
"locationInModule": {
|
|
9731
9771
|
"filename": "src/providers/common.ts",
|
|
9732
|
-
"line":
|
|
9772
|
+
"line": 460
|
|
9733
9773
|
},
|
|
9734
9774
|
"name": "labelsFromProperties",
|
|
9735
9775
|
"parameters": [
|
|
@@ -9779,7 +9819,7 @@
|
|
|
9779
9819
|
},
|
|
9780
9820
|
"locationInModule": {
|
|
9781
9821
|
"filename": "src/providers/lambda.ts",
|
|
9782
|
-
"line":
|
|
9822
|
+
"line": 370
|
|
9783
9823
|
},
|
|
9784
9824
|
"name": "status",
|
|
9785
9825
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -9846,7 +9886,7 @@
|
|
|
9846
9886
|
"immutable": true,
|
|
9847
9887
|
"locationInModule": {
|
|
9848
9888
|
"filename": "src/providers/lambda.ts",
|
|
9849
|
-
"line":
|
|
9889
|
+
"line": 293
|
|
9850
9890
|
},
|
|
9851
9891
|
"name": "connections",
|
|
9852
9892
|
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
@@ -10487,7 +10527,7 @@
|
|
|
10487
10527
|
"kind": "interface",
|
|
10488
10528
|
"locationInModule": {
|
|
10489
10529
|
"filename": "src/runner.ts",
|
|
10490
|
-
"line":
|
|
10530
|
+
"line": 145
|
|
10491
10531
|
},
|
|
10492
10532
|
"name": "LogOptions",
|
|
10493
10533
|
"properties": [
|
|
@@ -10501,7 +10541,7 @@
|
|
|
10501
10541
|
"immutable": true,
|
|
10502
10542
|
"locationInModule": {
|
|
10503
10543
|
"filename": "src/runner.ts",
|
|
10504
|
-
"line":
|
|
10544
|
+
"line": 156
|
|
10505
10545
|
},
|
|
10506
10546
|
"name": "includeExecutionData",
|
|
10507
10547
|
"optional": true,
|
|
@@ -10519,7 +10559,7 @@
|
|
|
10519
10559
|
"immutable": true,
|
|
10520
10560
|
"locationInModule": {
|
|
10521
10561
|
"filename": "src/runner.ts",
|
|
10522
|
-
"line":
|
|
10562
|
+
"line": 163
|
|
10523
10563
|
},
|
|
10524
10564
|
"name": "level",
|
|
10525
10565
|
"optional": true,
|
|
@@ -10536,7 +10576,7 @@
|
|
|
10536
10576
|
"immutable": true,
|
|
10537
10577
|
"locationInModule": {
|
|
10538
10578
|
"filename": "src/runner.ts",
|
|
10539
|
-
"line":
|
|
10579
|
+
"line": 149
|
|
10540
10580
|
},
|
|
10541
10581
|
"name": "logGroupName",
|
|
10542
10582
|
"optional": true,
|
|
@@ -10555,7 +10595,7 @@
|
|
|
10555
10595
|
"immutable": true,
|
|
10556
10596
|
"locationInModule": {
|
|
10557
10597
|
"filename": "src/runner.ts",
|
|
10558
|
-
"line":
|
|
10598
|
+
"line": 172
|
|
10559
10599
|
},
|
|
10560
10600
|
"name": "logRetention",
|
|
10561
10601
|
"optional": true,
|
|
@@ -10739,7 +10779,7 @@
|
|
|
10739
10779
|
"kind": "interface",
|
|
10740
10780
|
"locationInModule": {
|
|
10741
10781
|
"filename": "src/providers/common.ts",
|
|
10742
|
-
"line":
|
|
10782
|
+
"line": 235
|
|
10743
10783
|
},
|
|
10744
10784
|
"name": "ProviderRetryOptions",
|
|
10745
10785
|
"properties": [
|
|
@@ -10753,7 +10793,7 @@
|
|
|
10753
10793
|
"immutable": true,
|
|
10754
10794
|
"locationInModule": {
|
|
10755
10795
|
"filename": "src/providers/common.ts",
|
|
10756
|
-
"line":
|
|
10796
|
+
"line": 262
|
|
10757
10797
|
},
|
|
10758
10798
|
"name": "backoffRate",
|
|
10759
10799
|
"optional": true,
|
|
@@ -10772,7 +10812,7 @@
|
|
|
10772
10812
|
"immutable": true,
|
|
10773
10813
|
"locationInModule": {
|
|
10774
10814
|
"filename": "src/providers/common.ts",
|
|
10775
|
-
"line":
|
|
10815
|
+
"line": 248
|
|
10776
10816
|
},
|
|
10777
10817
|
"name": "interval",
|
|
10778
10818
|
"optional": true,
|
|
@@ -10790,7 +10830,7 @@
|
|
|
10790
10830
|
"immutable": true,
|
|
10791
10831
|
"locationInModule": {
|
|
10792
10832
|
"filename": "src/providers/common.ts",
|
|
10793
|
-
"line":
|
|
10833
|
+
"line": 255
|
|
10794
10834
|
},
|
|
10795
10835
|
"name": "maxAttempts",
|
|
10796
10836
|
"optional": true,
|
|
@@ -10809,7 +10849,7 @@
|
|
|
10809
10849
|
"immutable": true,
|
|
10810
10850
|
"locationInModule": {
|
|
10811
10851
|
"filename": "src/providers/common.ts",
|
|
10812
|
-
"line":
|
|
10852
|
+
"line": 241
|
|
10813
10853
|
},
|
|
10814
10854
|
"name": "retry",
|
|
10815
10855
|
"optional": true,
|
|
@@ -10831,7 +10871,7 @@
|
|
|
10831
10871
|
"kind": "interface",
|
|
10832
10872
|
"locationInModule": {
|
|
10833
10873
|
"filename": "src/providers/common.ts",
|
|
10834
|
-
"line":
|
|
10874
|
+
"line": 203
|
|
10835
10875
|
},
|
|
10836
10876
|
"name": "RunnerAmi",
|
|
10837
10877
|
"properties": [
|
|
@@ -10844,7 +10884,7 @@
|
|
|
10844
10884
|
"immutable": true,
|
|
10845
10885
|
"locationInModule": {
|
|
10846
10886
|
"filename": "src/providers/common.ts",
|
|
10847
|
-
"line":
|
|
10887
|
+
"line": 212
|
|
10848
10888
|
},
|
|
10849
10889
|
"name": "architecture",
|
|
10850
10890
|
"type": {
|
|
@@ -10860,7 +10900,7 @@
|
|
|
10860
10900
|
"immutable": true,
|
|
10861
10901
|
"locationInModule": {
|
|
10862
10902
|
"filename": "src/providers/common.ts",
|
|
10863
|
-
"line":
|
|
10903
|
+
"line": 207
|
|
10864
10904
|
},
|
|
10865
10905
|
"name": "launchTemplate",
|
|
10866
10906
|
"type": {
|
|
@@ -10876,7 +10916,7 @@
|
|
|
10876
10916
|
"immutable": true,
|
|
10877
10917
|
"locationInModule": {
|
|
10878
10918
|
"filename": "src/providers/common.ts",
|
|
10879
|
-
"line":
|
|
10919
|
+
"line": 217
|
|
10880
10920
|
},
|
|
10881
10921
|
"name": "os",
|
|
10882
10922
|
"type": {
|
|
@@ -10893,7 +10933,7 @@
|
|
|
10893
10933
|
"immutable": true,
|
|
10894
10934
|
"locationInModule": {
|
|
10895
10935
|
"filename": "src/providers/common.ts",
|
|
10896
|
-
"line":
|
|
10936
|
+
"line": 229
|
|
10897
10937
|
},
|
|
10898
10938
|
"name": "runnerVersion",
|
|
10899
10939
|
"type": {
|
|
@@ -10909,7 +10949,7 @@
|
|
|
10909
10949
|
"immutable": true,
|
|
10910
10950
|
"locationInModule": {
|
|
10911
10951
|
"filename": "src/providers/common.ts",
|
|
10912
|
-
"line":
|
|
10952
|
+
"line": 222
|
|
10913
10953
|
},
|
|
10914
10954
|
"name": "logGroup",
|
|
10915
10955
|
"optional": true,
|
|
@@ -12178,7 +12218,7 @@
|
|
|
12178
12218
|
"kind": "interface",
|
|
12179
12219
|
"locationInModule": {
|
|
12180
12220
|
"filename": "src/providers/common.ts",
|
|
12181
|
-
"line":
|
|
12221
|
+
"line": 268
|
|
12182
12222
|
},
|
|
12183
12223
|
"name": "RunnerProviderProps",
|
|
12184
12224
|
"properties": [
|
|
@@ -12193,7 +12233,7 @@
|
|
|
12193
12233
|
"immutable": true,
|
|
12194
12234
|
"locationInModule": {
|
|
12195
12235
|
"filename": "src/providers/common.ts",
|
|
12196
|
-
"line":
|
|
12236
|
+
"line": 276
|
|
12197
12237
|
},
|
|
12198
12238
|
"name": "logRetention",
|
|
12199
12239
|
"optional": true,
|
|
@@ -12211,7 +12251,7 @@
|
|
|
12211
12251
|
"immutable": true,
|
|
12212
12252
|
"locationInModule": {
|
|
12213
12253
|
"filename": "src/providers/common.ts",
|
|
12214
|
-
"line":
|
|
12254
|
+
"line": 283
|
|
12215
12255
|
},
|
|
12216
12256
|
"name": "retryOptions",
|
|
12217
12257
|
"optional": true,
|
|
@@ -12234,7 +12274,7 @@
|
|
|
12234
12274
|
"kind": "interface",
|
|
12235
12275
|
"locationInModule": {
|
|
12236
12276
|
"filename": "src/providers/common.ts",
|
|
12237
|
-
"line":
|
|
12277
|
+
"line": 295
|
|
12238
12278
|
},
|
|
12239
12279
|
"name": "RunnerRuntimeParameters",
|
|
12240
12280
|
"properties": [
|
|
@@ -12248,7 +12288,7 @@
|
|
|
12248
12288
|
"immutable": true,
|
|
12249
12289
|
"locationInModule": {
|
|
12250
12290
|
"filename": "src/providers/common.ts",
|
|
12251
|
-
"line":
|
|
12291
|
+
"line": 309
|
|
12252
12292
|
},
|
|
12253
12293
|
"name": "githubDomainPath",
|
|
12254
12294
|
"type": {
|
|
@@ -12264,7 +12304,7 @@
|
|
|
12264
12304
|
"immutable": true,
|
|
12265
12305
|
"locationInModule": {
|
|
12266
12306
|
"filename": "src/providers/common.ts",
|
|
12267
|
-
"line":
|
|
12307
|
+
"line": 314
|
|
12268
12308
|
},
|
|
12269
12309
|
"name": "ownerPath",
|
|
12270
12310
|
"type": {
|
|
@@ -12280,7 +12320,7 @@
|
|
|
12280
12320
|
"immutable": true,
|
|
12281
12321
|
"locationInModule": {
|
|
12282
12322
|
"filename": "src/providers/common.ts",
|
|
12283
|
-
"line":
|
|
12323
|
+
"line": 319
|
|
12284
12324
|
},
|
|
12285
12325
|
"name": "repoPath",
|
|
12286
12326
|
"type": {
|
|
@@ -12297,7 +12337,7 @@
|
|
|
12297
12337
|
"immutable": true,
|
|
12298
12338
|
"locationInModule": {
|
|
12299
12339
|
"filename": "src/providers/common.ts",
|
|
12300
|
-
"line":
|
|
12340
|
+
"line": 304
|
|
12301
12341
|
},
|
|
12302
12342
|
"name": "runnerNamePath",
|
|
12303
12343
|
"type": {
|
|
@@ -12313,7 +12353,7 @@
|
|
|
12313
12353
|
"immutable": true,
|
|
12314
12354
|
"locationInModule": {
|
|
12315
12355
|
"filename": "src/providers/common.ts",
|
|
12316
|
-
"line":
|
|
12356
|
+
"line": 299
|
|
12317
12357
|
},
|
|
12318
12358
|
"name": "runnerTokenPath",
|
|
12319
12359
|
"type": {
|
|
@@ -12577,7 +12617,7 @@
|
|
|
12577
12617
|
},
|
|
12578
12618
|
"locationInModule": {
|
|
12579
12619
|
"filename": "src/image-builders/static.ts",
|
|
12580
|
-
"line":
|
|
12620
|
+
"line": 49
|
|
12581
12621
|
},
|
|
12582
12622
|
"name": "fromDockerHub",
|
|
12583
12623
|
"parameters": [
|
|
@@ -12940,6 +12980,6 @@
|
|
|
12940
12980
|
"symbolId": "src/image-builders/aws-image-builder/deprecated/windows-components:WindowsComponents"
|
|
12941
12981
|
}
|
|
12942
12982
|
},
|
|
12943
|
-
"version": "0.9.
|
|
12944
|
-
"fingerprint": "
|
|
12983
|
+
"version": "0.9.8",
|
|
12984
|
+
"fingerprint": "KTRap0kR/oTc3SHqu9GL3ooB+DmlTzGItu5hqDl2D78="
|
|
12945
12985
|
}
|