@cloudsnorkel/cdk-github-runners 0.7.0 → 0.7.2

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/.jsii CHANGED
@@ -3169,6 +3169,629 @@
3169
3169
  }
3170
3170
  },
3171
3171
  "types": {
3172
+ "@cloudsnorkel/cdk-github-runners.AmiBuilder": {
3173
+ "assembly": "@cloudsnorkel/cdk-github-runners",
3174
+ "base": "constructs.Construct",
3175
+ "docs": {
3176
+ "remarks": "Builders can be used with {@link Ec2Runner}.\n\nEach builder re-runs automatically at a set interval to make sure the AMIs contain the latest versions of everything.\n\nYou can create an instance of this construct to customize the AMI used to spin-up runners. Some runner providers may require custom components. Check the runner provider documentation.\n\nFor example, to set a specific runner version, rebuild the image every 2 weeks, and add a few packages for the EC2 provider, use:\n\n```\nconst builder = new AmiBuilder(this, 'Builder', {\n runnerVersion: RunnerVersion.specific('2.293.0'),\n rebuildInterval: Duration.days(14),\n});\nbuilder.addComponent(new ImageBuilderComponent(scope, id, {\n platform: 'Linux',\n displayName: 'p7zip',\n description: 'Install some more packages',\n commands: [\n 'set -ex',\n 'apt-get install p7zip',\n ],\n}));\nnew Ec2Runner(this, 'EC2 provider', {\n label: 'custom-ec2',\n amiBuilder: builder,\n});\n```",
3177
+ "stability": "experimental",
3178
+ "summary": "An AMI builder that uses AWS Image Builder to build AMIs pre-baked with all the GitHub Actions runner requirements."
3179
+ },
3180
+ "fqn": "@cloudsnorkel/cdk-github-runners.AmiBuilder",
3181
+ "initializer": {
3182
+ "docs": {
3183
+ "stability": "experimental"
3184
+ },
3185
+ "locationInModule": {
3186
+ "filename": "src/providers/image-builders/ami.ts",
3187
+ "line": 223
3188
+ },
3189
+ "parameters": [
3190
+ {
3191
+ "name": "scope",
3192
+ "type": {
3193
+ "fqn": "constructs.Construct"
3194
+ }
3195
+ },
3196
+ {
3197
+ "name": "id",
3198
+ "type": {
3199
+ "primitive": "string"
3200
+ }
3201
+ },
3202
+ {
3203
+ "name": "props",
3204
+ "optional": true,
3205
+ "type": {
3206
+ "fqn": "@cloudsnorkel/cdk-github-runners.AmiBuilderProps"
3207
+ }
3208
+ }
3209
+ ]
3210
+ },
3211
+ "interfaces": [
3212
+ "@cloudsnorkel/cdk-github-runners.IAmiBuilder",
3213
+ "aws-cdk-lib.aws_ec2.IConnectable"
3214
+ ],
3215
+ "kind": "class",
3216
+ "locationInModule": {
3217
+ "filename": "src/providers/image-builders/ami.ts",
3218
+ "line": 220
3219
+ },
3220
+ "methods": [
3221
+ {
3222
+ "docs": {
3223
+ "stability": "experimental",
3224
+ "summary": "Add a component to be installed."
3225
+ },
3226
+ "locationInModule": {
3227
+ "filename": "src/providers/image-builders/ami.ts",
3228
+ "line": 285
3229
+ },
3230
+ "name": "addComponent",
3231
+ "parameters": [
3232
+ {
3233
+ "name": "component",
3234
+ "type": {
3235
+ "fqn": "@cloudsnorkel/cdk-github-runners.ImageBuilderComponent"
3236
+ }
3237
+ }
3238
+ ]
3239
+ },
3240
+ {
3241
+ "docs": {
3242
+ "remarks": "This helps deal with self-signed certificates for GitHub Enterprise Server.",
3243
+ "stability": "experimental",
3244
+ "summary": "Add extra trusted certificates."
3245
+ },
3246
+ "locationInModule": {
3247
+ "filename": "src/providers/image-builders/ami.ts",
3248
+ "line": 300
3249
+ },
3250
+ "name": "addExtraCertificates",
3251
+ "parameters": [
3252
+ {
3253
+ "docs": {
3254
+ "summary": "path to directory containing a file called certs.pem containing all the required certificates."
3255
+ },
3256
+ "name": "path",
3257
+ "type": {
3258
+ "primitive": "string"
3259
+ }
3260
+ }
3261
+ ]
3262
+ },
3263
+ {
3264
+ "docs": {
3265
+ "stability": "experimental",
3266
+ "summary": "Called by IRunnerProvider to finalize settings and create the AMI builder."
3267
+ },
3268
+ "locationInModule": {
3269
+ "filename": "src/providers/image-builders/ami.ts",
3270
+ "line": 313
3271
+ },
3272
+ "name": "bind",
3273
+ "overrides": "@cloudsnorkel/cdk-github-runners.IAmiBuilder",
3274
+ "returns": {
3275
+ "type": {
3276
+ "fqn": "@cloudsnorkel/cdk-github-runners.RunnerAmi"
3277
+ }
3278
+ }
3279
+ },
3280
+ {
3281
+ "docs": {
3282
+ "stability": "experimental"
3283
+ },
3284
+ "locationInModule": {
3285
+ "filename": "src/providers/image-builders/common.ts",
3286
+ "line": 452
3287
+ },
3288
+ "name": "createImage",
3289
+ "parameters": [
3290
+ {
3291
+ "name": "infra",
3292
+ "type": {
3293
+ "fqn": "aws-cdk-lib.aws_imagebuilder.CfnInfrastructureConfiguration"
3294
+ }
3295
+ },
3296
+ {
3297
+ "name": "dist",
3298
+ "type": {
3299
+ "fqn": "aws-cdk-lib.aws_imagebuilder.CfnDistributionConfiguration"
3300
+ }
3301
+ },
3302
+ {
3303
+ "name": "log",
3304
+ "type": {
3305
+ "fqn": "aws-cdk-lib.aws_logs.LogGroup"
3306
+ }
3307
+ },
3308
+ {
3309
+ "name": "imageRecipeArn",
3310
+ "optional": true,
3311
+ "type": {
3312
+ "primitive": "string"
3313
+ }
3314
+ },
3315
+ {
3316
+ "name": "containerRecipeArn",
3317
+ "optional": true,
3318
+ "type": {
3319
+ "primitive": "string"
3320
+ }
3321
+ }
3322
+ ],
3323
+ "protected": true,
3324
+ "returns": {
3325
+ "type": {
3326
+ "fqn": "aws-cdk-lib.aws_imagebuilder.CfnImage"
3327
+ }
3328
+ }
3329
+ },
3330
+ {
3331
+ "docs": {
3332
+ "stability": "experimental"
3333
+ },
3334
+ "locationInModule": {
3335
+ "filename": "src/providers/image-builders/common.ts",
3336
+ "line": 428
3337
+ },
3338
+ "name": "createInfrastructure",
3339
+ "parameters": [
3340
+ {
3341
+ "name": "managedPolicies",
3342
+ "type": {
3343
+ "collection": {
3344
+ "elementtype": {
3345
+ "fqn": "aws-cdk-lib.aws_iam.IManagedPolicy"
3346
+ },
3347
+ "kind": "array"
3348
+ }
3349
+ }
3350
+ }
3351
+ ],
3352
+ "protected": true,
3353
+ "returns": {
3354
+ "type": {
3355
+ "fqn": "aws-cdk-lib.aws_imagebuilder.CfnInfrastructureConfiguration"
3356
+ }
3357
+ }
3358
+ },
3359
+ {
3360
+ "docs": {
3361
+ "stability": "experimental"
3362
+ },
3363
+ "locationInModule": {
3364
+ "filename": "src/providers/image-builders/common.ts",
3365
+ "line": 420
3366
+ },
3367
+ "name": "createLog",
3368
+ "parameters": [
3369
+ {
3370
+ "name": "recipeName",
3371
+ "type": {
3372
+ "primitive": "string"
3373
+ }
3374
+ }
3375
+ ],
3376
+ "protected": true,
3377
+ "returns": {
3378
+ "type": {
3379
+ "fqn": "aws-cdk-lib.aws_logs.LogGroup"
3380
+ }
3381
+ }
3382
+ },
3383
+ {
3384
+ "docs": {
3385
+ "stability": "experimental"
3386
+ },
3387
+ "locationInModule": {
3388
+ "filename": "src/providers/image-builders/common.ts",
3389
+ "line": 469
3390
+ },
3391
+ "name": "createPipeline",
3392
+ "parameters": [
3393
+ {
3394
+ "name": "infra",
3395
+ "type": {
3396
+ "fqn": "aws-cdk-lib.aws_imagebuilder.CfnInfrastructureConfiguration"
3397
+ }
3398
+ },
3399
+ {
3400
+ "name": "dist",
3401
+ "type": {
3402
+ "fqn": "aws-cdk-lib.aws_imagebuilder.CfnDistributionConfiguration"
3403
+ }
3404
+ },
3405
+ {
3406
+ "name": "log",
3407
+ "type": {
3408
+ "fqn": "aws-cdk-lib.aws_logs.LogGroup"
3409
+ }
3410
+ },
3411
+ {
3412
+ "name": "imageRecipeArn",
3413
+ "optional": true,
3414
+ "type": {
3415
+ "primitive": "string"
3416
+ }
3417
+ },
3418
+ {
3419
+ "name": "containerRecipeArn",
3420
+ "optional": true,
3421
+ "type": {
3422
+ "primitive": "string"
3423
+ }
3424
+ }
3425
+ ],
3426
+ "protected": true,
3427
+ "returns": {
3428
+ "type": {
3429
+ "fqn": "aws-cdk-lib.aws_imagebuilder.CfnImagePipeline"
3430
+ }
3431
+ }
3432
+ },
3433
+ {
3434
+ "docs": {
3435
+ "remarks": "Useful for required system settings like certificates or proxy settings.",
3436
+ "stability": "experimental",
3437
+ "summary": "Add a component to be installed before any other components."
3438
+ },
3439
+ "locationInModule": {
3440
+ "filename": "src/providers/image-builders/ami.ts",
3441
+ "line": 271
3442
+ },
3443
+ "name": "prependComponent",
3444
+ "parameters": [
3445
+ {
3446
+ "name": "component",
3447
+ "type": {
3448
+ "fqn": "@cloudsnorkel/cdk-github-runners.ImageBuilderComponent"
3449
+ }
3450
+ }
3451
+ ]
3452
+ }
3453
+ ],
3454
+ "name": "AmiBuilder",
3455
+ "properties": [
3456
+ {
3457
+ "docs": {
3458
+ "stability": "experimental"
3459
+ },
3460
+ "immutable": true,
3461
+ "locationInModule": {
3462
+ "filename": "src/providers/image-builders/common.ts",
3463
+ "line": 343
3464
+ },
3465
+ "name": "architecture",
3466
+ "protected": true,
3467
+ "type": {
3468
+ "fqn": "@cloudsnorkel/cdk-github-runners.Architecture"
3469
+ }
3470
+ },
3471
+ {
3472
+ "docs": {
3473
+ "stability": "experimental",
3474
+ "summary": "The network connections associated with this resource."
3475
+ },
3476
+ "immutable": true,
3477
+ "locationInModule": {
3478
+ "filename": "src/providers/image-builders/common.ts",
3479
+ "line": 499
3480
+ },
3481
+ "name": "connections",
3482
+ "overrides": "aws-cdk-lib.aws_ec2.IConnectable",
3483
+ "type": {
3484
+ "fqn": "aws-cdk-lib.aws_ec2.Connections"
3485
+ }
3486
+ },
3487
+ {
3488
+ "docs": {
3489
+ "stability": "experimental"
3490
+ },
3491
+ "immutable": true,
3492
+ "locationInModule": {
3493
+ "filename": "src/providers/image-builders/common.ts",
3494
+ "line": 347
3495
+ },
3496
+ "name": "description",
3497
+ "protected": true,
3498
+ "type": {
3499
+ "primitive": "string"
3500
+ }
3501
+ },
3502
+ {
3503
+ "docs": {
3504
+ "stability": "experimental"
3505
+ },
3506
+ "immutable": true,
3507
+ "locationInModule": {
3508
+ "filename": "src/providers/image-builders/common.ts",
3509
+ "line": 344
3510
+ },
3511
+ "name": "os",
3512
+ "protected": true,
3513
+ "type": {
3514
+ "fqn": "@cloudsnorkel/cdk-github-runners.Os"
3515
+ }
3516
+ },
3517
+ {
3518
+ "docs": {
3519
+ "stability": "experimental"
3520
+ },
3521
+ "immutable": true,
3522
+ "locationInModule": {
3523
+ "filename": "src/providers/image-builders/common.ts",
3524
+ "line": 345
3525
+ },
3526
+ "name": "platform",
3527
+ "protected": true,
3528
+ "type": {
3529
+ "primitive": "string"
3530
+ }
3531
+ },
3532
+ {
3533
+ "docs": {
3534
+ "stability": "experimental"
3535
+ },
3536
+ "immutable": true,
3537
+ "locationInModule": {
3538
+ "filename": "src/providers/image-builders/common.ts",
3539
+ "line": 349
3540
+ },
3541
+ "name": "runnerVersion",
3542
+ "protected": true,
3543
+ "type": {
3544
+ "fqn": "@cloudsnorkel/cdk-github-runners.RunnerVersion"
3545
+ }
3546
+ },
3547
+ {
3548
+ "docs": {
3549
+ "stability": "experimental"
3550
+ },
3551
+ "locationInModule": {
3552
+ "filename": "src/providers/image-builders/common.ts",
3553
+ "line": 351
3554
+ },
3555
+ "name": "components",
3556
+ "protected": true,
3557
+ "type": {
3558
+ "collection": {
3559
+ "elementtype": {
3560
+ "fqn": "@cloudsnorkel/cdk-github-runners.ImageBuilderComponent"
3561
+ },
3562
+ "kind": "array"
3563
+ }
3564
+ }
3565
+ }
3566
+ ],
3567
+ "symbolId": "src/providers/image-builders/ami:AmiBuilder"
3568
+ },
3569
+ "@cloudsnorkel/cdk-github-runners.AmiBuilderProps": {
3570
+ "assembly": "@cloudsnorkel/cdk-github-runners",
3571
+ "datatype": true,
3572
+ "docs": {
3573
+ "stability": "experimental",
3574
+ "summary": "Properties for {@link AmiBuilder} construct."
3575
+ },
3576
+ "fqn": "@cloudsnorkel/cdk-github-runners.AmiBuilderProps",
3577
+ "kind": "interface",
3578
+ "locationInModule": {
3579
+ "filename": "src/providers/image-builders/ami.ts",
3580
+ "line": 24
3581
+ },
3582
+ "name": "AmiBuilderProps",
3583
+ "properties": [
3584
+ {
3585
+ "abstract": true,
3586
+ "docs": {
3587
+ "default": "Architecture.X86_64",
3588
+ "stability": "experimental",
3589
+ "summary": "Image architecture."
3590
+ },
3591
+ "immutable": true,
3592
+ "locationInModule": {
3593
+ "filename": "src/providers/image-builders/ami.ts",
3594
+ "line": 30
3595
+ },
3596
+ "name": "architecture",
3597
+ "optional": true,
3598
+ "type": {
3599
+ "fqn": "@cloudsnorkel/cdk-github-runners.Architecture"
3600
+ }
3601
+ },
3602
+ {
3603
+ "abstract": true,
3604
+ "docs": {
3605
+ "default": "m5.large",
3606
+ "stability": "experimental",
3607
+ "summary": "The instance type used to build the image."
3608
+ },
3609
+ "immutable": true,
3610
+ "locationInModule": {
3611
+ "filename": "src/providers/image-builders/ami.ts",
3612
+ "line": 90
3613
+ },
3614
+ "name": "instanceType",
3615
+ "optional": true,
3616
+ "type": {
3617
+ "fqn": "aws-cdk-lib.aws_ec2.InstanceType"
3618
+ }
3619
+ },
3620
+ {
3621
+ "abstract": true,
3622
+ "docs": {
3623
+ "default": "RemovalPolicy.DESTROY",
3624
+ "remarks": "If deployment fails on the custom resource, try setting this to `RemovalPolicy.RETAIN`. This way the logs can still be viewed, and you can see why the build failed.\n\nWe try to not leave anything behind when removed. But sometimes a log staying behind is useful.",
3625
+ "stability": "experimental",
3626
+ "summary": "Removal policy for logs of image builds."
3627
+ },
3628
+ "immutable": true,
3629
+ "locationInModule": {
3630
+ "filename": "src/providers/image-builders/ami.ts",
3631
+ "line": 108
3632
+ },
3633
+ "name": "logRemovalPolicy",
3634
+ "optional": true,
3635
+ "type": {
3636
+ "fqn": "aws-cdk-lib.RemovalPolicy"
3637
+ }
3638
+ },
3639
+ {
3640
+ "abstract": true,
3641
+ "docs": {
3642
+ "default": "logs.RetentionDays.ONE_MONTH",
3643
+ "remarks": "When updating\nthis property, unsetting it doesn't remove the log retention policy. To\nremove the retention policy, set the value to `INFINITE`.",
3644
+ "stability": "experimental",
3645
+ "summary": "The number of days log events are kept in CloudWatch Logs."
3646
+ },
3647
+ "immutable": true,
3648
+ "locationInModule": {
3649
+ "filename": "src/providers/image-builders/ami.ts",
3650
+ "line": 99
3651
+ },
3652
+ "name": "logRetention",
3653
+ "optional": true,
3654
+ "type": {
3655
+ "fqn": "aws-cdk-lib.aws_logs.RetentionDays"
3656
+ }
3657
+ },
3658
+ {
3659
+ "abstract": true,
3660
+ "docs": {
3661
+ "default": "OS.LINUX",
3662
+ "stability": "experimental",
3663
+ "summary": "Image OS."
3664
+ },
3665
+ "immutable": true,
3666
+ "locationInModule": {
3667
+ "filename": "src/providers/image-builders/ami.ts",
3668
+ "line": 37
3669
+ },
3670
+ "name": "os",
3671
+ "optional": true,
3672
+ "type": {
3673
+ "fqn": "@cloudsnorkel/cdk-github-runners.Os"
3674
+ }
3675
+ },
3676
+ {
3677
+ "abstract": true,
3678
+ "docs": {
3679
+ "default": "Duration.days(7)",
3680
+ "remarks": "Useful for keeping the AMI up-do-date with the latest GitHub runner version and latest OS updates.\n\nSet to zero to disable.",
3681
+ "stability": "experimental",
3682
+ "summary": "Schedule the AMI to be rebuilt every given interval."
3683
+ },
3684
+ "immutable": true,
3685
+ "locationInModule": {
3686
+ "filename": "src/providers/image-builders/ami.ts",
3687
+ "line": 53
3688
+ },
3689
+ "name": "rebuildInterval",
3690
+ "optional": true,
3691
+ "type": {
3692
+ "fqn": "aws-cdk-lib.Duration"
3693
+ }
3694
+ },
3695
+ {
3696
+ "abstract": true,
3697
+ "docs": {
3698
+ "default": "latest version available",
3699
+ "stability": "experimental",
3700
+ "summary": "Version of GitHub Runners to install."
3701
+ },
3702
+ "immutable": true,
3703
+ "locationInModule": {
3704
+ "filename": "src/providers/image-builders/ami.ts",
3705
+ "line": 44
3706
+ },
3707
+ "name": "runnerVersion",
3708
+ "optional": true,
3709
+ "type": {
3710
+ "fqn": "@cloudsnorkel/cdk-github-runners.RunnerVersion"
3711
+ }
3712
+ },
3713
+ {
3714
+ "abstract": true,
3715
+ "docs": {
3716
+ "default": "new security group",
3717
+ "deprecated": "use {@link securityGroups}",
3718
+ "stability": "deprecated",
3719
+ "summary": "Security group to assign to launched builder instances."
3720
+ },
3721
+ "immutable": true,
3722
+ "locationInModule": {
3723
+ "filename": "src/providers/image-builders/ami.ts",
3724
+ "line": 69
3725
+ },
3726
+ "name": "securityGroup",
3727
+ "optional": true,
3728
+ "type": {
3729
+ "fqn": "aws-cdk-lib.aws_ec2.ISecurityGroup"
3730
+ }
3731
+ },
3732
+ {
3733
+ "abstract": true,
3734
+ "docs": {
3735
+ "default": "new security group",
3736
+ "stability": "experimental",
3737
+ "summary": "Security groups to assign to launched builder instances."
3738
+ },
3739
+ "immutable": true,
3740
+ "locationInModule": {
3741
+ "filename": "src/providers/image-builders/ami.ts",
3742
+ "line": 76
3743
+ },
3744
+ "name": "securityGroups",
3745
+ "optional": true,
3746
+ "type": {
3747
+ "collection": {
3748
+ "elementtype": {
3749
+ "fqn": "aws-cdk-lib.aws_ec2.ISecurityGroup"
3750
+ },
3751
+ "kind": "array"
3752
+ }
3753
+ }
3754
+ },
3755
+ {
3756
+ "abstract": true,
3757
+ "docs": {
3758
+ "default": "default VPC subnet",
3759
+ "remarks": "Only the first matched subnet will be used.",
3760
+ "stability": "experimental",
3761
+ "summary": "Where to place the network interfaces within the VPC."
3762
+ },
3763
+ "immutable": true,
3764
+ "locationInModule": {
3765
+ "filename": "src/providers/image-builders/ami.ts",
3766
+ "line": 83
3767
+ },
3768
+ "name": "subnetSelection",
3769
+ "optional": true,
3770
+ "type": {
3771
+ "fqn": "aws-cdk-lib.aws_ec2.SubnetSelection"
3772
+ }
3773
+ },
3774
+ {
3775
+ "abstract": true,
3776
+ "docs": {
3777
+ "default": "default account VPC",
3778
+ "stability": "experimental",
3779
+ "summary": "VPC where builder instances will be launched."
3780
+ },
3781
+ "immutable": true,
3782
+ "locationInModule": {
3783
+ "filename": "src/providers/image-builders/ami.ts",
3784
+ "line": 60
3785
+ },
3786
+ "name": "vpc",
3787
+ "optional": true,
3788
+ "type": {
3789
+ "fqn": "aws-cdk-lib.aws_ec2.IVpc"
3790
+ }
3791
+ }
3792
+ ],
3793
+ "symbolId": "src/providers/image-builders/ami:AmiBuilderProps"
3794
+ },
3172
3795
  "@cloudsnorkel/cdk-github-runners.Architecture": {
3173
3796
  "assembly": "@cloudsnorkel/cdk-github-runners",
3174
3797
  "docs": {
@@ -3828,6 +4451,7 @@
3828
4451
  },
3829
4452
  {
3830
4453
  "name": "props",
4454
+ "optional": true,
3831
4455
  "type": {
3832
4456
  "fqn": "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProps"
3833
4457
  }
@@ -4389,7 +5013,7 @@
4389
5013
  },
4390
5014
  "locationInModule": {
4391
5015
  "filename": "src/providers/image-builders/container.ts",
4392
- "line": 330
5016
+ "line": 322
4393
5017
  },
4394
5018
  "name": "bind",
4395
5019
  "overrides": "@cloudsnorkel/cdk-github-runners.IImageBuilder",
@@ -4978,6 +5602,7 @@
4978
5602
  },
4979
5603
  {
4980
5604
  "name": "props",
5605
+ "optional": true,
4981
5606
  "type": {
4982
5607
  "fqn": "@cloudsnorkel/cdk-github-runners.Ec2RunnerProps"
4983
5608
  }
@@ -5444,6 +6069,7 @@
5444
6069
  },
5445
6070
  {
5446
6071
  "name": "props",
6072
+ "optional": true,
5447
6073
  "type": {
5448
6074
  "fqn": "@cloudsnorkel/cdk-github-runners.FargateRunnerProps"
5449
6075
  }
@@ -5979,7 +6605,7 @@
5979
6605
  "abstract": true,
5980
6606
  "docs": {
5981
6607
  "default": "a new security group",
5982
- "deprecated": "use {@link securityGroupss}",
6608
+ "deprecated": "use {@link securityGroups}",
5983
6609
  "stability": "deprecated",
5984
6610
  "summary": "Security group to assign to the task."
5985
6611
  },
@@ -6090,7 +6716,7 @@
6090
6716
  },
6091
6717
  "locationInModule": {
6092
6718
  "filename": "src/runner.ts",
6093
- "line": 147
6719
+ "line": 144
6094
6720
  },
6095
6721
  "parameters": [
6096
6722
  {
@@ -6129,7 +6755,7 @@
6129
6755
  "immutable": true,
6130
6756
  "locationInModule": {
6131
6757
  "filename": "src/runner.ts",
6132
- "line": 134
6758
+ "line": 131
6133
6759
  },
6134
6760
  "name": "providers",
6135
6761
  "type": {
@@ -6149,12 +6775,27 @@
6149
6775
  "immutable": true,
6150
6776
  "locationInModule": {
6151
6777
  "filename": "src/runner.ts",
6152
- "line": 139
6778
+ "line": 136
6153
6779
  },
6154
6780
  "name": "secrets",
6155
6781
  "type": {
6156
6782
  "fqn": "@cloudsnorkel/cdk-github-runners.Secrets"
6157
6783
  }
6784
+ },
6785
+ {
6786
+ "docs": {
6787
+ "stability": "experimental"
6788
+ },
6789
+ "immutable": true,
6790
+ "locationInModule": {
6791
+ "filename": "src/runner.ts",
6792
+ "line": 144
6793
+ },
6794
+ "name": "props",
6795
+ "optional": true,
6796
+ "type": {
6797
+ "fqn": "@cloudsnorkel/cdk-github-runners.GitHubRunnersProps"
6798
+ }
6158
6799
  }
6159
6800
  ],
6160
6801
  "symbolId": "src/runner:GitHubRunners"
@@ -7101,6 +7742,7 @@
7101
7742
  },
7102
7743
  {
7103
7744
  "name": "props",
7745
+ "optional": true,
7104
7746
  "type": {
7105
7747
  "fqn": "@cloudsnorkel/cdk-github-runners.LambdaRunnerProps"
7106
7748
  }
@@ -7599,7 +8241,7 @@
7599
8241
  "kind": "class",
7600
8242
  "locationInModule": {
7601
8243
  "filename": "src/providers/image-builders/linux-components.ts",
7602
- "line": 8
8244
+ "line": 9
7603
8245
  },
7604
8246
  "methods": [
7605
8247
  {
@@ -7608,7 +8250,7 @@
7608
8250
  },
7609
8251
  "locationInModule": {
7610
8252
  "filename": "src/providers/image-builders/linux-components.ts",
7611
- "line": 48
8253
+ "line": 49
7612
8254
  },
7613
8255
  "name": "awsCli",
7614
8256
  "parameters": [
@@ -7644,7 +8286,7 @@
7644
8286
  },
7645
8287
  "locationInModule": {
7646
8288
  "filename": "src/providers/image-builders/linux-components.ts",
7647
- "line": 134
8289
+ "line": 135
7648
8290
  },
7649
8291
  "name": "docker",
7650
8292
  "parameters": [
@@ -7680,7 +8322,43 @@
7680
8322
  },
7681
8323
  "locationInModule": {
7682
8324
  "filename": "src/providers/image-builders/linux-components.ts",
7683
- "line": 88
8325
+ "line": 154
8326
+ },
8327
+ "name": "extraCertificates",
8328
+ "parameters": [
8329
+ {
8330
+ "name": "scope",
8331
+ "type": {
8332
+ "fqn": "constructs.Construct"
8333
+ }
8334
+ },
8335
+ {
8336
+ "name": "id",
8337
+ "type": {
8338
+ "primitive": "string"
8339
+ }
8340
+ },
8341
+ {
8342
+ "name": "path",
8343
+ "type": {
8344
+ "primitive": "string"
8345
+ }
8346
+ }
8347
+ ],
8348
+ "returns": {
8349
+ "type": {
8350
+ "fqn": "@cloudsnorkel/cdk-github-runners.ImageBuilderComponent"
8351
+ }
8352
+ },
8353
+ "static": true
8354
+ },
8355
+ {
8356
+ "docs": {
8357
+ "stability": "experimental"
8358
+ },
8359
+ "locationInModule": {
8360
+ "filename": "src/providers/image-builders/linux-components.ts",
8361
+ "line": 89
7684
8362
  },
7685
8363
  "name": "git",
7686
8364
  "parameters": [
@@ -7716,7 +8394,7 @@
7716
8394
  },
7717
8395
  "locationInModule": {
7718
8396
  "filename": "src/providers/image-builders/linux-components.ts",
7719
- "line": 72
8397
+ "line": 73
7720
8398
  },
7721
8399
  "name": "githubCli",
7722
8400
  "parameters": [
@@ -7752,7 +8430,7 @@
7752
8430
  },
7753
8431
  "locationInModule": {
7754
8432
  "filename": "src/providers/image-builders/linux-components.ts",
7755
- "line": 102
8433
+ "line": 103
7756
8434
  },
7757
8435
  "name": "githubRunner",
7758
8436
  "parameters": [
@@ -7794,7 +8472,7 @@
7794
8472
  },
7795
8473
  "locationInModule": {
7796
8474
  "filename": "src/providers/image-builders/linux-components.ts",
7797
- "line": 9
8475
+ "line": 10
7798
8476
  },
7799
8477
  "name": "requiredPackages",
7800
8478
  "parameters": [
@@ -7830,7 +8508,7 @@
7830
8508
  },
7831
8509
  "locationInModule": {
7832
8510
  "filename": "src/providers/image-builders/linux-components.ts",
7833
- "line": 35
8511
+ "line": 36
7834
8512
  },
7835
8513
  "name": "runnerUser",
7836
8514
  "parameters": [
@@ -8728,7 +9406,7 @@
8728
9406
  "kind": "class",
8729
9407
  "locationInModule": {
8730
9408
  "filename": "src/providers/image-builders/windows-components.ts",
8731
- "line": 8
9409
+ "line": 9
8732
9410
  },
8733
9411
  "methods": [
8734
9412
  {
@@ -8737,7 +9415,7 @@
8737
9415
  },
8738
9416
  "locationInModule": {
8739
9417
  "filename": "src/providers/image-builders/windows-components.ts",
8740
- "line": 21
9418
+ "line": 22
8741
9419
  },
8742
9420
  "name": "awsCli",
8743
9421
  "parameters": [
@@ -8767,7 +9445,7 @@
8767
9445
  },
8768
9446
  "locationInModule": {
8769
9447
  "filename": "src/providers/image-builders/windows-components.ts",
8770
- "line": 9
9448
+ "line": 10
8771
9449
  },
8772
9450
  "name": "cloudwatchAgent",
8773
9451
  "parameters": [
@@ -8797,7 +9475,7 @@
8797
9475
  },
8798
9476
  "locationInModule": {
8799
9477
  "filename": "src/providers/image-builders/windows-components.ts",
8800
- "line": 98
9478
+ "line": 99
8801
9479
  },
8802
9480
  "name": "docker",
8803
9481
  "parameters": [
@@ -8827,7 +9505,43 @@
8827
9505
  },
8828
9506
  "locationInModule": {
8829
9507
  "filename": "src/providers/image-builders/windows-components.ts",
8830
- "line": 52
9508
+ "line": 119
9509
+ },
9510
+ "name": "extraCertificates",
9511
+ "parameters": [
9512
+ {
9513
+ "name": "scope",
9514
+ "type": {
9515
+ "fqn": "constructs.Construct"
9516
+ }
9517
+ },
9518
+ {
9519
+ "name": "id",
9520
+ "type": {
9521
+ "primitive": "string"
9522
+ }
9523
+ },
9524
+ {
9525
+ "name": "path",
9526
+ "type": {
9527
+ "primitive": "string"
9528
+ }
9529
+ }
9530
+ ],
9531
+ "returns": {
9532
+ "type": {
9533
+ "fqn": "@cloudsnorkel/cdk-github-runners.ImageBuilderComponent"
9534
+ }
9535
+ },
9536
+ "static": true
9537
+ },
9538
+ {
9539
+ "docs": {
9540
+ "stability": "experimental"
9541
+ },
9542
+ "locationInModule": {
9543
+ "filename": "src/providers/image-builders/windows-components.ts",
9544
+ "line": 53
8831
9545
  },
8832
9546
  "name": "git",
8833
9547
  "parameters": [
@@ -8857,7 +9571,7 @@
8857
9571
  },
8858
9572
  "locationInModule": {
8859
9573
  "filename": "src/providers/image-builders/windows-components.ts",
8860
- "line": 33
9574
+ "line": 34
8861
9575
  },
8862
9576
  "name": "githubCli",
8863
9577
  "parameters": [
@@ -8887,7 +9601,7 @@
8887
9601
  },
8888
9602
  "locationInModule": {
8889
9603
  "filename": "src/providers/image-builders/windows-components.ts",
8890
- "line": 71
9604
+ "line": 72
8891
9605
  },
8892
9606
  "name": "githubRunner",
8893
9607
  "parameters": [
@@ -8922,6 +9636,6 @@
8922
9636
  "symbolId": "src/providers/image-builders/windows-components:WindowsComponents"
8923
9637
  }
8924
9638
  },
8925
- "version": "0.7.0",
8926
- "fingerprint": "UDboOTTzf1PLx0M70uQlFUcscusgJJmS80P15bbmnFk="
9639
+ "version": "0.7.2",
9640
+ "fingerprint": "4HxP5z3vyA+XMrHiQPYYCxZms8CLpqg1YeSfxwpEKtk="
8927
9641
  }