@cloudsnorkel/cdk-github-runners 0.9.1 → 0.9.3
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 +999 -98
- package/API.md +776 -8
- package/assets/lambdas/setup.lambda/index.js +10 -6
- package/assets/lambdas/status.lambda/index.js +22 -10
- package/assets/lambdas/webhook-handler.lambda/index.js +15 -7
- package/lib/access.d.ts +65 -0
- package/lib/access.js +160 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/lib/lambdas/setup.lambda.js +11 -7
- package/lib/lambdas/status.lambda.js +24 -11
- package/lib/lambdas/webhook-handler.lambda.js +19 -10
- package/lib/providers/codebuild.js +2 -2
- package/lib/providers/common.js +3 -3
- package/lib/providers/ec2.js +2 -2
- package/lib/providers/ecs.js +5 -1
- package/lib/providers/fargate.js +2 -2
- package/lib/providers/image-builders/api.js +1 -1
- package/lib/providers/image-builders/aws-image-builder/builder.js +1 -1
- package/lib/providers/image-builders/aws-image-builder/deprecated/ami.js +1 -1
- package/lib/providers/image-builders/aws-image-builder/deprecated/container.js +1 -1
- package/lib/providers/image-builders/aws-image-builder/deprecated/linux-components.js +1 -1
- package/lib/providers/image-builders/aws-image-builder/deprecated/windows-components.js +1 -1
- package/lib/providers/image-builders/codebuild-deprecated.js +1 -1
- package/lib/providers/image-builders/components.js +1 -1
- package/lib/providers/image-builders/static.js +1 -1
- package/lib/providers/index.d.ts +1 -0
- package/lib/providers/index.js +2 -1
- package/lib/providers/lambda.js +2 -2
- package/lib/runner.d.ts +23 -0
- package/lib/runner.js +13 -4
- package/lib/secrets.js +1 -1
- package/lib/webhook.d.ts +5 -0
- package/lib/webhook.js +5 -4
- package/package.json +1 -1
package/.jsii
CHANGED
|
@@ -3828,6 +3828,86 @@
|
|
|
3828
3828
|
],
|
|
3829
3829
|
"symbolId": "src/providers/image-builders/aws-image-builder/deprecated/ami:AmiBuilderProps"
|
|
3830
3830
|
},
|
|
3831
|
+
"@cloudsnorkel/cdk-github-runners.ApiGatewayAccessProps": {
|
|
3832
|
+
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
3833
|
+
"datatype": true,
|
|
3834
|
+
"docs": {
|
|
3835
|
+
"stability": "experimental"
|
|
3836
|
+
},
|
|
3837
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.ApiGatewayAccessProps",
|
|
3838
|
+
"kind": "interface",
|
|
3839
|
+
"locationInModule": {
|
|
3840
|
+
"filename": "src/access.ts",
|
|
3841
|
+
"line": 9
|
|
3842
|
+
},
|
|
3843
|
+
"name": "ApiGatewayAccessProps",
|
|
3844
|
+
"properties": [
|
|
3845
|
+
{
|
|
3846
|
+
"abstract": true,
|
|
3847
|
+
"docs": {
|
|
3848
|
+
"remarks": "If not specified on public API Gateway, all IP addresses are allowed.\n\nIf not specified on private API Gateway, no IP addresses are allowed (but specified security groups are).",
|
|
3849
|
+
"stability": "experimental",
|
|
3850
|
+
"summary": "List of IP addresses in CIDR notation that are allowed to access the API Gateway."
|
|
3851
|
+
},
|
|
3852
|
+
"immutable": true,
|
|
3853
|
+
"locationInModule": {
|
|
3854
|
+
"filename": "src/access.ts",
|
|
3855
|
+
"line": 17
|
|
3856
|
+
},
|
|
3857
|
+
"name": "allowedIps",
|
|
3858
|
+
"optional": true,
|
|
3859
|
+
"type": {
|
|
3860
|
+
"collection": {
|
|
3861
|
+
"elementtype": {
|
|
3862
|
+
"primitive": "string"
|
|
3863
|
+
},
|
|
3864
|
+
"kind": "array"
|
|
3865
|
+
}
|
|
3866
|
+
}
|
|
3867
|
+
},
|
|
3868
|
+
{
|
|
3869
|
+
"abstract": true,
|
|
3870
|
+
"docs": {
|
|
3871
|
+
"remarks": "Only works for private API Gateways with {@link allowedVpc}.",
|
|
3872
|
+
"stability": "experimental",
|
|
3873
|
+
"summary": "List of security groups that are allowed to access the API Gateway."
|
|
3874
|
+
},
|
|
3875
|
+
"immutable": true,
|
|
3876
|
+
"locationInModule": {
|
|
3877
|
+
"filename": "src/access.ts",
|
|
3878
|
+
"line": 29
|
|
3879
|
+
},
|
|
3880
|
+
"name": "allowedSecurityGroups",
|
|
3881
|
+
"optional": true,
|
|
3882
|
+
"type": {
|
|
3883
|
+
"collection": {
|
|
3884
|
+
"elementtype": {
|
|
3885
|
+
"fqn": "aws-cdk-lib.aws_ec2.ISecurityGroup"
|
|
3886
|
+
},
|
|
3887
|
+
"kind": "array"
|
|
3888
|
+
}
|
|
3889
|
+
}
|
|
3890
|
+
},
|
|
3891
|
+
{
|
|
3892
|
+
"abstract": true,
|
|
3893
|
+
"docs": {
|
|
3894
|
+
"stability": "experimental",
|
|
3895
|
+
"summary": "Creates a private API Gateway and allows access from the specified VPC."
|
|
3896
|
+
},
|
|
3897
|
+
"immutable": true,
|
|
3898
|
+
"locationInModule": {
|
|
3899
|
+
"filename": "src/access.ts",
|
|
3900
|
+
"line": 22
|
|
3901
|
+
},
|
|
3902
|
+
"name": "allowedVpc",
|
|
3903
|
+
"optional": true,
|
|
3904
|
+
"type": {
|
|
3905
|
+
"fqn": "aws-cdk-lib.aws_ec2.IVpc"
|
|
3906
|
+
}
|
|
3907
|
+
}
|
|
3908
|
+
],
|
|
3909
|
+
"symbolId": "src/access:ApiGatewayAccessProps"
|
|
3910
|
+
},
|
|
3831
3911
|
"@cloudsnorkel/cdk-github-runners.Architecture": {
|
|
3832
3912
|
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
3833
3913
|
"docs": {
|
|
@@ -6339,32 +6419,687 @@
|
|
|
6339
6419
|
{
|
|
6340
6420
|
"abstract": true,
|
|
6341
6421
|
"docs": {
|
|
6342
|
-
"deprecated": "use imageBuilder",
|
|
6343
|
-
"stability": "deprecated"
|
|
6422
|
+
"deprecated": "use imageBuilder",
|
|
6423
|
+
"stability": "deprecated"
|
|
6424
|
+
},
|
|
6425
|
+
"immutable": true,
|
|
6426
|
+
"locationInModule": {
|
|
6427
|
+
"filename": "src/providers/ec2.ts",
|
|
6428
|
+
"line": 148
|
|
6429
|
+
},
|
|
6430
|
+
"name": "amiBuilder",
|
|
6431
|
+
"optional": true,
|
|
6432
|
+
"type": {
|
|
6433
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.IRunnerImageBuilder"
|
|
6434
|
+
}
|
|
6435
|
+
},
|
|
6436
|
+
{
|
|
6437
|
+
"abstract": true,
|
|
6438
|
+
"docs": {
|
|
6439
|
+
"default": "Ec2ProviderProps.imageBuilder()",
|
|
6440
|
+
"remarks": "The image builder determines the OS and architecture of the runner.",
|
|
6441
|
+
"stability": "experimental",
|
|
6442
|
+
"summary": "Runner image builder used to build AMI containing GitHub Runner and all requirements."
|
|
6443
|
+
},
|
|
6444
|
+
"immutable": true,
|
|
6445
|
+
"locationInModule": {
|
|
6446
|
+
"filename": "src/providers/ec2.ts",
|
|
6447
|
+
"line": 143
|
|
6448
|
+
},
|
|
6449
|
+
"name": "imageBuilder",
|
|
6450
|
+
"optional": true,
|
|
6451
|
+
"type": {
|
|
6452
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.IRunnerImageBuilder"
|
|
6453
|
+
}
|
|
6454
|
+
},
|
|
6455
|
+
{
|
|
6456
|
+
"abstract": true,
|
|
6457
|
+
"docs": {
|
|
6458
|
+
"default": "m5.large",
|
|
6459
|
+
"stability": "experimental",
|
|
6460
|
+
"summary": "Instance type for launched runner instances."
|
|
6461
|
+
},
|
|
6462
|
+
"immutable": true,
|
|
6463
|
+
"locationInModule": {
|
|
6464
|
+
"filename": "src/providers/ec2.ts",
|
|
6465
|
+
"line": 166
|
|
6466
|
+
},
|
|
6467
|
+
"name": "instanceType",
|
|
6468
|
+
"optional": true,
|
|
6469
|
+
"type": {
|
|
6470
|
+
"fqn": "aws-cdk-lib.aws_ec2.InstanceType"
|
|
6471
|
+
}
|
|
6472
|
+
},
|
|
6473
|
+
{
|
|
6474
|
+
"abstract": true,
|
|
6475
|
+
"docs": {
|
|
6476
|
+
"default": "['ec2']",
|
|
6477
|
+
"remarks": "These labels are used to identify which provider should spawn a new on-demand runner. Every job sends a webhook with the labels it's looking for\nbased on runs-on. We match the labels from the webhook with the labels specified here. If all the labels specified here are present in the\njob's labels, this provider will be chosen and spawn a new runner.",
|
|
6478
|
+
"stability": "experimental",
|
|
6479
|
+
"summary": "GitHub Actions labels used for this provider."
|
|
6480
|
+
},
|
|
6481
|
+
"immutable": true,
|
|
6482
|
+
"locationInModule": {
|
|
6483
|
+
"filename": "src/providers/ec2.ts",
|
|
6484
|
+
"line": 159
|
|
6485
|
+
},
|
|
6486
|
+
"name": "labels",
|
|
6487
|
+
"optional": true,
|
|
6488
|
+
"type": {
|
|
6489
|
+
"collection": {
|
|
6490
|
+
"elementtype": {
|
|
6491
|
+
"primitive": "string"
|
|
6492
|
+
},
|
|
6493
|
+
"kind": "array"
|
|
6494
|
+
}
|
|
6495
|
+
}
|
|
6496
|
+
},
|
|
6497
|
+
{
|
|
6498
|
+
"abstract": true,
|
|
6499
|
+
"docs": {
|
|
6500
|
+
"default": "a new security group",
|
|
6501
|
+
"deprecated": "use {@link securityGroups }",
|
|
6502
|
+
"stability": "deprecated",
|
|
6503
|
+
"summary": "Security Group to assign to launched runner instances."
|
|
6504
|
+
},
|
|
6505
|
+
"immutable": true,
|
|
6506
|
+
"locationInModule": {
|
|
6507
|
+
"filename": "src/providers/ec2.ts",
|
|
6508
|
+
"line": 182
|
|
6509
|
+
},
|
|
6510
|
+
"name": "securityGroup",
|
|
6511
|
+
"optional": true,
|
|
6512
|
+
"type": {
|
|
6513
|
+
"fqn": "aws-cdk-lib.aws_ec2.ISecurityGroup"
|
|
6514
|
+
}
|
|
6515
|
+
},
|
|
6516
|
+
{
|
|
6517
|
+
"abstract": true,
|
|
6518
|
+
"docs": {
|
|
6519
|
+
"default": "a new security group",
|
|
6520
|
+
"stability": "experimental",
|
|
6521
|
+
"summary": "Security groups to assign to launched runner instances."
|
|
6522
|
+
},
|
|
6523
|
+
"immutable": true,
|
|
6524
|
+
"locationInModule": {
|
|
6525
|
+
"filename": "src/providers/ec2.ts",
|
|
6526
|
+
"line": 189
|
|
6527
|
+
},
|
|
6528
|
+
"name": "securityGroups",
|
|
6529
|
+
"optional": true,
|
|
6530
|
+
"type": {
|
|
6531
|
+
"collection": {
|
|
6532
|
+
"elementtype": {
|
|
6533
|
+
"fqn": "aws-cdk-lib.aws_ec2.ISecurityGroup"
|
|
6534
|
+
},
|
|
6535
|
+
"kind": "array"
|
|
6536
|
+
}
|
|
6537
|
+
}
|
|
6538
|
+
},
|
|
6539
|
+
{
|
|
6540
|
+
"abstract": true,
|
|
6541
|
+
"docs": {
|
|
6542
|
+
"default": "false",
|
|
6543
|
+
"remarks": "Spot instances are cheaper but not always available and can be stopped prematurely.",
|
|
6544
|
+
"stability": "experimental",
|
|
6545
|
+
"summary": "Use spot instances to save money."
|
|
6546
|
+
},
|
|
6547
|
+
"immutable": true,
|
|
6548
|
+
"locationInModule": {
|
|
6549
|
+
"filename": "src/providers/ec2.ts",
|
|
6550
|
+
"line": 219
|
|
6551
|
+
},
|
|
6552
|
+
"name": "spot",
|
|
6553
|
+
"optional": true,
|
|
6554
|
+
"type": {
|
|
6555
|
+
"primitive": "boolean"
|
|
6556
|
+
}
|
|
6557
|
+
},
|
|
6558
|
+
{
|
|
6559
|
+
"abstract": true,
|
|
6560
|
+
"docs": {
|
|
6561
|
+
"default": "no max price (you will pay current spot price)",
|
|
6562
|
+
"stability": "experimental",
|
|
6563
|
+
"summary": "Set a maximum price for spot instances."
|
|
6564
|
+
},
|
|
6565
|
+
"immutable": true,
|
|
6566
|
+
"locationInModule": {
|
|
6567
|
+
"filename": "src/providers/ec2.ts",
|
|
6568
|
+
"line": 226
|
|
6569
|
+
},
|
|
6570
|
+
"name": "spotMaxPrice",
|
|
6571
|
+
"optional": true,
|
|
6572
|
+
"type": {
|
|
6573
|
+
"primitive": "string"
|
|
6574
|
+
}
|
|
6575
|
+
},
|
|
6576
|
+
{
|
|
6577
|
+
"abstract": true,
|
|
6578
|
+
"docs": {
|
|
6579
|
+
"default": "30GB",
|
|
6580
|
+
"remarks": "This modifies the boot volume size and doesn't add any additional volumes.",
|
|
6581
|
+
"stability": "experimental",
|
|
6582
|
+
"summary": "Size of volume available for launched runner instances."
|
|
6583
|
+
},
|
|
6584
|
+
"immutable": true,
|
|
6585
|
+
"locationInModule": {
|
|
6586
|
+
"filename": "src/providers/ec2.ts",
|
|
6587
|
+
"line": 173
|
|
6588
|
+
},
|
|
6589
|
+
"name": "storageSize",
|
|
6590
|
+
"optional": true,
|
|
6591
|
+
"type": {
|
|
6592
|
+
"fqn": "aws-cdk-lib.Size"
|
|
6593
|
+
}
|
|
6594
|
+
},
|
|
6595
|
+
{
|
|
6596
|
+
"abstract": true,
|
|
6597
|
+
"docs": {
|
|
6598
|
+
"default": "default subnet of account's default VPC",
|
|
6599
|
+
"deprecated": "use {@link vpc } and {@link subnetSelection }",
|
|
6600
|
+
"stability": "deprecated",
|
|
6601
|
+
"summary": "Subnet where the runner instances will be launched."
|
|
6602
|
+
},
|
|
6603
|
+
"immutable": true,
|
|
6604
|
+
"locationInModule": {
|
|
6605
|
+
"filename": "src/providers/ec2.ts",
|
|
6606
|
+
"line": 198
|
|
6607
|
+
},
|
|
6608
|
+
"name": "subnet",
|
|
6609
|
+
"optional": true,
|
|
6610
|
+
"type": {
|
|
6611
|
+
"fqn": "aws-cdk-lib.aws_ec2.ISubnet"
|
|
6612
|
+
}
|
|
6613
|
+
},
|
|
6614
|
+
{
|
|
6615
|
+
"abstract": true,
|
|
6616
|
+
"docs": {
|
|
6617
|
+
"default": "default VPC subnet",
|
|
6618
|
+
"remarks": "Only the first matched subnet will be used.",
|
|
6619
|
+
"stability": "experimental",
|
|
6620
|
+
"summary": "Where to place the network interfaces within the VPC."
|
|
6621
|
+
},
|
|
6622
|
+
"immutable": true,
|
|
6623
|
+
"locationInModule": {
|
|
6624
|
+
"filename": "src/providers/ec2.ts",
|
|
6625
|
+
"line": 212
|
|
6626
|
+
},
|
|
6627
|
+
"name": "subnetSelection",
|
|
6628
|
+
"optional": true,
|
|
6629
|
+
"type": {
|
|
6630
|
+
"fqn": "aws-cdk-lib.aws_ec2.SubnetSelection"
|
|
6631
|
+
}
|
|
6632
|
+
},
|
|
6633
|
+
{
|
|
6634
|
+
"abstract": true,
|
|
6635
|
+
"docs": {
|
|
6636
|
+
"default": "default account VPC",
|
|
6637
|
+
"stability": "experimental",
|
|
6638
|
+
"summary": "VPC where runner instances will be launched."
|
|
6639
|
+
},
|
|
6640
|
+
"immutable": true,
|
|
6641
|
+
"locationInModule": {
|
|
6642
|
+
"filename": "src/providers/ec2.ts",
|
|
6643
|
+
"line": 205
|
|
6644
|
+
},
|
|
6645
|
+
"name": "vpc",
|
|
6646
|
+
"optional": true,
|
|
6647
|
+
"type": {
|
|
6648
|
+
"fqn": "aws-cdk-lib.aws_ec2.IVpc"
|
|
6649
|
+
}
|
|
6650
|
+
}
|
|
6651
|
+
],
|
|
6652
|
+
"symbolId": "src/providers/ec2:Ec2RunnerProviderProps"
|
|
6653
|
+
},
|
|
6654
|
+
"@cloudsnorkel/cdk-github-runners.EcsRunnerProvider": {
|
|
6655
|
+
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
6656
|
+
"base": "constructs.Construct",
|
|
6657
|
+
"docs": {
|
|
6658
|
+
"remarks": "ECS can be useful when you want more control of the infrastructure running the GitHub Actions Docker containers. You can control the autoscaling\ngroup to scale down to zero during the night and scale up during work hours. This way you can still save money, but have to wait less for\ninfrastructure to spin up.\n\nThis construct is not meant to be used by itself. It should be passed in the providers property for GitHubRunners.",
|
|
6659
|
+
"stability": "experimental",
|
|
6660
|
+
"summary": "GitHub Actions runner provider using ECS on EC2 to execute jobs."
|
|
6661
|
+
},
|
|
6662
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.EcsRunnerProvider",
|
|
6663
|
+
"initializer": {
|
|
6664
|
+
"docs": {
|
|
6665
|
+
"stability": "experimental"
|
|
6666
|
+
},
|
|
6667
|
+
"locationInModule": {
|
|
6668
|
+
"filename": "src/providers/ecs.ts",
|
|
6669
|
+
"line": 296
|
|
6670
|
+
},
|
|
6671
|
+
"parameters": [
|
|
6672
|
+
{
|
|
6673
|
+
"name": "scope",
|
|
6674
|
+
"type": {
|
|
6675
|
+
"fqn": "constructs.Construct"
|
|
6676
|
+
}
|
|
6677
|
+
},
|
|
6678
|
+
{
|
|
6679
|
+
"name": "id",
|
|
6680
|
+
"type": {
|
|
6681
|
+
"primitive": "string"
|
|
6682
|
+
}
|
|
6683
|
+
},
|
|
6684
|
+
{
|
|
6685
|
+
"name": "props",
|
|
6686
|
+
"optional": true,
|
|
6687
|
+
"type": {
|
|
6688
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.EcsRunnerProviderProps"
|
|
6689
|
+
}
|
|
6690
|
+
}
|
|
6691
|
+
]
|
|
6692
|
+
},
|
|
6693
|
+
"interfaces": [
|
|
6694
|
+
"@cloudsnorkel/cdk-github-runners.IRunnerProvider"
|
|
6695
|
+
],
|
|
6696
|
+
"kind": "class",
|
|
6697
|
+
"locationInModule": {
|
|
6698
|
+
"filename": "src/providers/ecs.ts",
|
|
6699
|
+
"line": 194
|
|
6700
|
+
},
|
|
6701
|
+
"methods": [
|
|
6702
|
+
{
|
|
6703
|
+
"docs": {
|
|
6704
|
+
"remarks": "Included components:\n * `RunnerImageComponent.requiredPackages()`\n * `RunnerImageComponent.runnerUser()`\n * `RunnerImageComponent.git()`\n * `RunnerImageComponent.githubCli()`\n * `RunnerImageComponent.awsCli()`\n * `RunnerImageComponent.dockerInDocker()`\n * `RunnerImageComponent.githubRunner()`",
|
|
6705
|
+
"stability": "experimental",
|
|
6706
|
+
"summary": "Create new image builder that builds ECS specific runner images using Ubuntu."
|
|
6707
|
+
},
|
|
6708
|
+
"locationInModule": {
|
|
6709
|
+
"filename": "src/providers/ecs.ts",
|
|
6710
|
+
"line": 207
|
|
6711
|
+
},
|
|
6712
|
+
"name": "imageBuilder",
|
|
6713
|
+
"parameters": [
|
|
6714
|
+
{
|
|
6715
|
+
"name": "scope",
|
|
6716
|
+
"type": {
|
|
6717
|
+
"fqn": "constructs.Construct"
|
|
6718
|
+
}
|
|
6719
|
+
},
|
|
6720
|
+
{
|
|
6721
|
+
"name": "id",
|
|
6722
|
+
"type": {
|
|
6723
|
+
"primitive": "string"
|
|
6724
|
+
}
|
|
6725
|
+
},
|
|
6726
|
+
{
|
|
6727
|
+
"name": "props",
|
|
6728
|
+
"optional": true,
|
|
6729
|
+
"type": {
|
|
6730
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.RunnerImageBuilderProps"
|
|
6731
|
+
}
|
|
6732
|
+
}
|
|
6733
|
+
],
|
|
6734
|
+
"returns": {
|
|
6735
|
+
"type": {
|
|
6736
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.RunnerImageBuilder"
|
|
6737
|
+
}
|
|
6738
|
+
},
|
|
6739
|
+
"static": true
|
|
6740
|
+
},
|
|
6741
|
+
{
|
|
6742
|
+
"docs": {
|
|
6743
|
+
"stability": "experimental"
|
|
6744
|
+
},
|
|
6745
|
+
"locationInModule": {
|
|
6746
|
+
"filename": "src/providers/common.ts",
|
|
6747
|
+
"line": 467
|
|
6748
|
+
},
|
|
6749
|
+
"name": "addRetry",
|
|
6750
|
+
"parameters": [
|
|
6751
|
+
{
|
|
6752
|
+
"name": "task",
|
|
6753
|
+
"type": {
|
|
6754
|
+
"union": {
|
|
6755
|
+
"types": [
|
|
6756
|
+
{
|
|
6757
|
+
"fqn": "aws-cdk-lib.aws_stepfunctions.TaskStateBase"
|
|
6758
|
+
},
|
|
6759
|
+
{
|
|
6760
|
+
"fqn": "aws-cdk-lib.aws_stepfunctions.Parallel"
|
|
6761
|
+
}
|
|
6762
|
+
]
|
|
6763
|
+
}
|
|
6764
|
+
}
|
|
6765
|
+
},
|
|
6766
|
+
{
|
|
6767
|
+
"name": "errors",
|
|
6768
|
+
"type": {
|
|
6769
|
+
"collection": {
|
|
6770
|
+
"elementtype": {
|
|
6771
|
+
"primitive": "string"
|
|
6772
|
+
},
|
|
6773
|
+
"kind": "array"
|
|
6774
|
+
}
|
|
6775
|
+
}
|
|
6776
|
+
}
|
|
6777
|
+
],
|
|
6778
|
+
"protected": true
|
|
6779
|
+
},
|
|
6780
|
+
{
|
|
6781
|
+
"docs": {
|
|
6782
|
+
"remarks": "Called by GithubRunners and shouldn't be called manually.",
|
|
6783
|
+
"stability": "experimental",
|
|
6784
|
+
"summary": "Generate step function task(s) to start a new runner."
|
|
6785
|
+
},
|
|
6786
|
+
"locationInModule": {
|
|
6787
|
+
"filename": "src/providers/ecs.ts",
|
|
6788
|
+
"line": 449
|
|
6789
|
+
},
|
|
6790
|
+
"name": "getStepFunctionTask",
|
|
6791
|
+
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
6792
|
+
"parameters": [
|
|
6793
|
+
{
|
|
6794
|
+
"docs": {
|
|
6795
|
+
"summary": "workflow job details."
|
|
6796
|
+
},
|
|
6797
|
+
"name": "parameters",
|
|
6798
|
+
"type": {
|
|
6799
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.RunnerRuntimeParameters"
|
|
6800
|
+
}
|
|
6801
|
+
}
|
|
6802
|
+
],
|
|
6803
|
+
"returns": {
|
|
6804
|
+
"type": {
|
|
6805
|
+
"fqn": "aws-cdk-lib.aws_stepfunctions.IChainable"
|
|
6806
|
+
}
|
|
6807
|
+
}
|
|
6808
|
+
},
|
|
6809
|
+
{
|
|
6810
|
+
"docs": {
|
|
6811
|
+
"remarks": "This can be used to add additional policy\nstatements to the state machine role that are not automatically added by the task returned from {@link getStepFunctionTask}.",
|
|
6812
|
+
"stability": "experimental",
|
|
6813
|
+
"summary": "An optional method that modifies the role of the state machine after all the tasks have been generated."
|
|
6814
|
+
},
|
|
6815
|
+
"locationInModule": {
|
|
6816
|
+
"filename": "src/providers/ecs.ts",
|
|
6817
|
+
"line": 498
|
|
6818
|
+
},
|
|
6819
|
+
"name": "grantStateMachine",
|
|
6820
|
+
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
6821
|
+
"parameters": [
|
|
6822
|
+
{
|
|
6823
|
+
"name": "_",
|
|
6824
|
+
"type": {
|
|
6825
|
+
"fqn": "aws-cdk-lib.aws_iam.IGrantable"
|
|
6826
|
+
}
|
|
6827
|
+
}
|
|
6828
|
+
]
|
|
6829
|
+
},
|
|
6830
|
+
{
|
|
6831
|
+
"docs": {
|
|
6832
|
+
"stability": "experimental"
|
|
6833
|
+
},
|
|
6834
|
+
"locationInModule": {
|
|
6835
|
+
"filename": "src/providers/common.ts",
|
|
6836
|
+
"line": 453
|
|
6837
|
+
},
|
|
6838
|
+
"name": "labelsFromProperties",
|
|
6839
|
+
"parameters": [
|
|
6840
|
+
{
|
|
6841
|
+
"name": "defaultLabel",
|
|
6842
|
+
"type": {
|
|
6843
|
+
"primitive": "string"
|
|
6844
|
+
}
|
|
6845
|
+
},
|
|
6846
|
+
{
|
|
6847
|
+
"name": "propsLabel",
|
|
6848
|
+
"optional": true,
|
|
6849
|
+
"type": {
|
|
6850
|
+
"primitive": "string"
|
|
6851
|
+
}
|
|
6852
|
+
},
|
|
6853
|
+
{
|
|
6854
|
+
"name": "propsLabels",
|
|
6855
|
+
"optional": true,
|
|
6856
|
+
"type": {
|
|
6857
|
+
"collection": {
|
|
6858
|
+
"elementtype": {
|
|
6859
|
+
"primitive": "string"
|
|
6860
|
+
},
|
|
6861
|
+
"kind": "array"
|
|
6862
|
+
}
|
|
6863
|
+
}
|
|
6864
|
+
}
|
|
6865
|
+
],
|
|
6866
|
+
"protected": true,
|
|
6867
|
+
"returns": {
|
|
6868
|
+
"type": {
|
|
6869
|
+
"collection": {
|
|
6870
|
+
"elementtype": {
|
|
6871
|
+
"primitive": "string"
|
|
6872
|
+
},
|
|
6873
|
+
"kind": "array"
|
|
6874
|
+
}
|
|
6875
|
+
}
|
|
6876
|
+
}
|
|
6877
|
+
},
|
|
6878
|
+
{
|
|
6879
|
+
"docs": {
|
|
6880
|
+
"remarks": "Also gives the status function any needed permissions to query the Docker image or AMI.",
|
|
6881
|
+
"stability": "experimental",
|
|
6882
|
+
"summary": "Return status of the runner provider to be used in the main status function."
|
|
6883
|
+
},
|
|
6884
|
+
"locationInModule": {
|
|
6885
|
+
"filename": "src/providers/ecs.ts",
|
|
6886
|
+
"line": 501
|
|
6887
|
+
},
|
|
6888
|
+
"name": "status",
|
|
6889
|
+
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
6890
|
+
"parameters": [
|
|
6891
|
+
{
|
|
6892
|
+
"name": "statusFunctionRole",
|
|
6893
|
+
"type": {
|
|
6894
|
+
"fqn": "aws-cdk-lib.aws_iam.IGrantable"
|
|
6895
|
+
}
|
|
6896
|
+
}
|
|
6897
|
+
],
|
|
6898
|
+
"returns": {
|
|
6899
|
+
"type": {
|
|
6900
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.IRunnerProviderStatus"
|
|
6901
|
+
}
|
|
6902
|
+
}
|
|
6903
|
+
}
|
|
6904
|
+
],
|
|
6905
|
+
"name": "EcsRunnerProvider",
|
|
6906
|
+
"properties": [
|
|
6907
|
+
{
|
|
6908
|
+
"docs": {
|
|
6909
|
+
"stability": "experimental",
|
|
6910
|
+
"summary": "The network connections associated with this resource."
|
|
6911
|
+
},
|
|
6912
|
+
"immutable": true,
|
|
6913
|
+
"locationInModule": {
|
|
6914
|
+
"filename": "src/providers/ecs.ts",
|
|
6915
|
+
"line": 272
|
|
6916
|
+
},
|
|
6917
|
+
"name": "connections",
|
|
6918
|
+
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
6919
|
+
"type": {
|
|
6920
|
+
"fqn": "aws-cdk-lib.aws_ec2.Connections"
|
|
6921
|
+
}
|
|
6922
|
+
},
|
|
6923
|
+
{
|
|
6924
|
+
"docs": {
|
|
6925
|
+
"stability": "experimental",
|
|
6926
|
+
"summary": "Grant principal used to add permissions to the runner role."
|
|
6927
|
+
},
|
|
6928
|
+
"immutable": true,
|
|
6929
|
+
"locationInModule": {
|
|
6930
|
+
"filename": "src/providers/ecs.ts",
|
|
6931
|
+
"line": 267
|
|
6932
|
+
},
|
|
6933
|
+
"name": "grantPrincipal",
|
|
6934
|
+
"overrides": "aws-cdk-lib.aws_iam.IGrantable",
|
|
6935
|
+
"type": {
|
|
6936
|
+
"fqn": "aws-cdk-lib.aws_iam.IPrincipal"
|
|
6937
|
+
}
|
|
6938
|
+
},
|
|
6939
|
+
{
|
|
6940
|
+
"docs": {
|
|
6941
|
+
"stability": "experimental",
|
|
6942
|
+
"summary": "Labels associated with this provider."
|
|
6943
|
+
},
|
|
6944
|
+
"immutable": true,
|
|
6945
|
+
"locationInModule": {
|
|
6946
|
+
"filename": "src/providers/ecs.ts",
|
|
6947
|
+
"line": 247
|
|
6948
|
+
},
|
|
6949
|
+
"name": "labels",
|
|
6950
|
+
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
6951
|
+
"type": {
|
|
6952
|
+
"collection": {
|
|
6953
|
+
"elementtype": {
|
|
6954
|
+
"primitive": "string"
|
|
6955
|
+
},
|
|
6956
|
+
"kind": "array"
|
|
6957
|
+
}
|
|
6958
|
+
}
|
|
6959
|
+
},
|
|
6960
|
+
{
|
|
6961
|
+
"docs": {
|
|
6962
|
+
"remarks": "Note that this is not the job log, but the runner itself. It will not contain output from the GitHub Action but only metadata on its execution.",
|
|
6963
|
+
"stability": "experimental",
|
|
6964
|
+
"summary": "Log group where provided runners will save their logs."
|
|
6965
|
+
},
|
|
6966
|
+
"immutable": true,
|
|
6967
|
+
"locationInModule": {
|
|
6968
|
+
"filename": "src/providers/ecs.ts",
|
|
6969
|
+
"line": 284
|
|
6970
|
+
},
|
|
6971
|
+
"name": "logGroup",
|
|
6972
|
+
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
6973
|
+
"type": {
|
|
6974
|
+
"fqn": "aws-cdk-lib.aws_logs.ILogGroup"
|
|
6975
|
+
}
|
|
6976
|
+
}
|
|
6977
|
+
],
|
|
6978
|
+
"symbolId": "src/providers/ecs:EcsRunnerProvider"
|
|
6979
|
+
},
|
|
6980
|
+
"@cloudsnorkel/cdk-github-runners.EcsRunnerProviderProps": {
|
|
6981
|
+
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
6982
|
+
"datatype": true,
|
|
6983
|
+
"docs": {
|
|
6984
|
+
"stability": "experimental",
|
|
6985
|
+
"summary": "Properties for EcsRunnerProvider."
|
|
6986
|
+
},
|
|
6987
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.EcsRunnerProviderProps",
|
|
6988
|
+
"interfaces": [
|
|
6989
|
+
"@cloudsnorkel/cdk-github-runners.RunnerProviderProps"
|
|
6990
|
+
],
|
|
6991
|
+
"kind": "interface",
|
|
6992
|
+
"locationInModule": {
|
|
6993
|
+
"filename": "src/providers/ecs.ts",
|
|
6994
|
+
"line": 34
|
|
6995
|
+
},
|
|
6996
|
+
"name": "EcsRunnerProviderProps",
|
|
6997
|
+
"properties": [
|
|
6998
|
+
{
|
|
6999
|
+
"abstract": true,
|
|
7000
|
+
"docs": {
|
|
7001
|
+
"default": "true",
|
|
7002
|
+
"remarks": "Make sure the task will have access to GitHub. A public IP might be required unless you have NAT gateway.",
|
|
7003
|
+
"stability": "experimental",
|
|
7004
|
+
"summary": "Assign public IP to the runner task."
|
|
7005
|
+
},
|
|
7006
|
+
"immutable": true,
|
|
7007
|
+
"locationInModule": {
|
|
7008
|
+
"filename": "src/providers/ecs.ts",
|
|
7009
|
+
"line": 97
|
|
7010
|
+
},
|
|
7011
|
+
"name": "assignPublicIp",
|
|
7012
|
+
"optional": true,
|
|
7013
|
+
"type": {
|
|
7014
|
+
"primitive": "boolean"
|
|
7015
|
+
}
|
|
7016
|
+
},
|
|
7017
|
+
{
|
|
7018
|
+
"abstract": true,
|
|
7019
|
+
"docs": {
|
|
7020
|
+
"default": "new capacity provider",
|
|
7021
|
+
"stability": "experimental",
|
|
7022
|
+
"summary": "Existing capacity provider to use."
|
|
7023
|
+
},
|
|
7024
|
+
"immutable": true,
|
|
7025
|
+
"locationInModule": {
|
|
7026
|
+
"filename": "src/providers/ecs.ts",
|
|
7027
|
+
"line": 88
|
|
7028
|
+
},
|
|
7029
|
+
"name": "capacityProvider",
|
|
7030
|
+
"optional": true,
|
|
7031
|
+
"type": {
|
|
7032
|
+
"fqn": "aws-cdk-lib.aws_ecs.AsgCapacityProvider"
|
|
7033
|
+
}
|
|
7034
|
+
},
|
|
7035
|
+
{
|
|
7036
|
+
"abstract": true,
|
|
7037
|
+
"docs": {
|
|
7038
|
+
"default": "a new cluster",
|
|
7039
|
+
"stability": "experimental",
|
|
7040
|
+
"summary": "Existing ECS cluster to use."
|
|
7041
|
+
},
|
|
7042
|
+
"immutable": true,
|
|
7043
|
+
"locationInModule": {
|
|
7044
|
+
"filename": "src/providers/ecs.ts",
|
|
7045
|
+
"line": 81
|
|
7046
|
+
},
|
|
7047
|
+
"name": "cluster",
|
|
7048
|
+
"optional": true,
|
|
7049
|
+
"type": {
|
|
7050
|
+
"fqn": "aws-cdk-lib.aws_ecs.Cluster"
|
|
7051
|
+
}
|
|
7052
|
+
},
|
|
7053
|
+
{
|
|
7054
|
+
"abstract": true,
|
|
7055
|
+
"docs": {
|
|
7056
|
+
"default": "1024",
|
|
7057
|
+
"remarks": "1024 units is 1 vCPU. Fractions of a vCPU are supported.",
|
|
7058
|
+
"stability": "experimental",
|
|
7059
|
+
"summary": "The number of cpu units used by the task."
|
|
7060
|
+
},
|
|
7061
|
+
"immutable": true,
|
|
7062
|
+
"locationInModule": {
|
|
7063
|
+
"filename": "src/providers/ecs.ts",
|
|
7064
|
+
"line": 104
|
|
7065
|
+
},
|
|
7066
|
+
"name": "cpu",
|
|
7067
|
+
"optional": true,
|
|
7068
|
+
"type": {
|
|
7069
|
+
"primitive": "number"
|
|
7070
|
+
}
|
|
7071
|
+
},
|
|
7072
|
+
{
|
|
7073
|
+
"abstract": true,
|
|
7074
|
+
"docs": {
|
|
7075
|
+
"default": "true",
|
|
7076
|
+
"remarks": "Disabling this can\nspeed up provisioning of CodeBuild runners. If you don't intend on running or building Docker images, disable this for faster start-up times.",
|
|
7077
|
+
"stability": "experimental",
|
|
7078
|
+
"summary": "Support building and running Docker images by enabling Docker-in-Docker (dind) and the required CodeBuild privileged mode."
|
|
6344
7079
|
},
|
|
6345
7080
|
"immutable": true,
|
|
6346
7081
|
"locationInModule": {
|
|
6347
|
-
"filename": "src/providers/
|
|
6348
|
-
"line":
|
|
7082
|
+
"filename": "src/providers/ecs.ts",
|
|
7083
|
+
"line": 149
|
|
6349
7084
|
},
|
|
6350
|
-
"name": "
|
|
7085
|
+
"name": "dockerInDocker",
|
|
6351
7086
|
"optional": true,
|
|
6352
7087
|
"type": {
|
|
6353
|
-
"
|
|
7088
|
+
"primitive": "boolean"
|
|
6354
7089
|
}
|
|
6355
7090
|
},
|
|
6356
7091
|
{
|
|
6357
7092
|
"abstract": true,
|
|
6358
7093
|
"docs": {
|
|
6359
|
-
"default": "
|
|
7094
|
+
"default": "EcsRunnerProvider.imageBuilder()",
|
|
6360
7095
|
"remarks": "The image builder determines the OS and architecture of the runner.",
|
|
6361
7096
|
"stability": "experimental",
|
|
6362
|
-
"summary": "Runner image builder used to build
|
|
7097
|
+
"summary": "Runner image builder used to build Docker images containing GitHub Runner and all requirements."
|
|
6363
7098
|
},
|
|
6364
7099
|
"immutable": true,
|
|
6365
7100
|
"locationInModule": {
|
|
6366
|
-
"filename": "src/providers/
|
|
6367
|
-
"line":
|
|
7101
|
+
"filename": "src/providers/ecs.ts",
|
|
7102
|
+
"line": 42
|
|
6368
7103
|
},
|
|
6369
7104
|
"name": "imageBuilder",
|
|
6370
7105
|
"optional": true,
|
|
@@ -6375,14 +7110,15 @@
|
|
|
6375
7110
|
{
|
|
6376
7111
|
"abstract": true,
|
|
6377
7112
|
"docs": {
|
|
6378
|
-
"default": "m5.large",
|
|
7113
|
+
"default": "m5.large or m6g.large",
|
|
7114
|
+
"remarks": "Only used when creating a new cluster.",
|
|
6379
7115
|
"stability": "experimental",
|
|
6380
|
-
"summary": "Instance type
|
|
7116
|
+
"summary": "Instance type of ECS cluster instances."
|
|
6381
7117
|
},
|
|
6382
7118
|
"immutable": true,
|
|
6383
7119
|
"locationInModule": {
|
|
6384
|
-
"filename": "src/providers/
|
|
6385
|
-
"line":
|
|
7120
|
+
"filename": "src/providers/ecs.ts",
|
|
7121
|
+
"line": 118
|
|
6386
7122
|
},
|
|
6387
7123
|
"name": "instanceType",
|
|
6388
7124
|
"optional": true,
|
|
@@ -6393,15 +7129,15 @@
|
|
|
6393
7129
|
{
|
|
6394
7130
|
"abstract": true,
|
|
6395
7131
|
"docs": {
|
|
6396
|
-
"default": "['
|
|
7132
|
+
"default": "['ecs']",
|
|
6397
7133
|
"remarks": "These labels are used to identify which provider should spawn a new on-demand runner. Every job sends a webhook with the labels it's looking for\nbased on runs-on. We match the labels from the webhook with the labels specified here. If all the labels specified here are present in the\njob's labels, this provider will be chosen and spawn a new runner.",
|
|
6398
7134
|
"stability": "experimental",
|
|
6399
7135
|
"summary": "GitHub Actions labels used for this provider."
|
|
6400
7136
|
},
|
|
6401
7137
|
"immutable": true,
|
|
6402
7138
|
"locationInModule": {
|
|
6403
|
-
"filename": "src/providers/
|
|
6404
|
-
"line":
|
|
7139
|
+
"filename": "src/providers/ecs.ts",
|
|
7140
|
+
"line": 53
|
|
6405
7141
|
},
|
|
6406
7142
|
"name": "labels",
|
|
6407
7143
|
"optional": true,
|
|
@@ -6417,132 +7153,130 @@
|
|
|
6417
7153
|
{
|
|
6418
7154
|
"abstract": true,
|
|
6419
7155
|
"docs": {
|
|
6420
|
-
"default": "
|
|
6421
|
-
"
|
|
6422
|
-
"stability": "
|
|
6423
|
-
"summary": "
|
|
7156
|
+
"default": "5",
|
|
7157
|
+
"remarks": "Only used when creating a new cluster.",
|
|
7158
|
+
"stability": "experimental",
|
|
7159
|
+
"summary": "The maximum number of instances to run in the cluster."
|
|
6424
7160
|
},
|
|
6425
7161
|
"immutable": true,
|
|
6426
7162
|
"locationInModule": {
|
|
6427
|
-
"filename": "src/providers/
|
|
6428
|
-
"line":
|
|
7163
|
+
"filename": "src/providers/ecs.ts",
|
|
7164
|
+
"line": 132
|
|
6429
7165
|
},
|
|
6430
|
-
"name": "
|
|
7166
|
+
"name": "maxInstances",
|
|
6431
7167
|
"optional": true,
|
|
6432
7168
|
"type": {
|
|
6433
|
-
"
|
|
7169
|
+
"primitive": "number"
|
|
6434
7170
|
}
|
|
6435
7171
|
},
|
|
6436
7172
|
{
|
|
6437
7173
|
"abstract": true,
|
|
6438
7174
|
"docs": {
|
|
6439
|
-
"default": "
|
|
7175
|
+
"default": "3500",
|
|
6440
7176
|
"stability": "experimental",
|
|
6441
|
-
"summary": "
|
|
7177
|
+
"summary": "The amount (in MiB) of memory used by the task."
|
|
6442
7178
|
},
|
|
6443
7179
|
"immutable": true,
|
|
6444
7180
|
"locationInModule": {
|
|
6445
|
-
"filename": "src/providers/
|
|
6446
|
-
"line":
|
|
7181
|
+
"filename": "src/providers/ecs.ts",
|
|
7182
|
+
"line": 111
|
|
6447
7183
|
},
|
|
6448
|
-
"name": "
|
|
7184
|
+
"name": "memoryLimitMiB",
|
|
6449
7185
|
"optional": true,
|
|
6450
7186
|
"type": {
|
|
6451
|
-
"
|
|
6452
|
-
"elementtype": {
|
|
6453
|
-
"fqn": "aws-cdk-lib.aws_ec2.ISecurityGroup"
|
|
6454
|
-
},
|
|
6455
|
-
"kind": "array"
|
|
6456
|
-
}
|
|
7187
|
+
"primitive": "number"
|
|
6457
7188
|
}
|
|
6458
7189
|
},
|
|
6459
7190
|
{
|
|
6460
7191
|
"abstract": true,
|
|
6461
7192
|
"docs": {
|
|
6462
|
-
"default": "
|
|
6463
|
-
"remarks": "
|
|
7193
|
+
"default": "0",
|
|
7194
|
+
"remarks": "Only used when creating a new cluster.",
|
|
6464
7195
|
"stability": "experimental",
|
|
6465
|
-
"summary": "
|
|
7196
|
+
"summary": "The minimum number of instances to run in the cluster."
|
|
6466
7197
|
},
|
|
6467
7198
|
"immutable": true,
|
|
6468
7199
|
"locationInModule": {
|
|
6469
|
-
"filename": "src/providers/
|
|
6470
|
-
"line":
|
|
7200
|
+
"filename": "src/providers/ecs.ts",
|
|
7201
|
+
"line": 125
|
|
6471
7202
|
},
|
|
6472
|
-
"name": "
|
|
7203
|
+
"name": "minInstances",
|
|
6473
7204
|
"optional": true,
|
|
6474
7205
|
"type": {
|
|
6475
|
-
"primitive": "
|
|
7206
|
+
"primitive": "number"
|
|
6476
7207
|
}
|
|
6477
7208
|
},
|
|
6478
7209
|
{
|
|
6479
7210
|
"abstract": true,
|
|
6480
7211
|
"docs": {
|
|
6481
|
-
"default": "
|
|
7212
|
+
"default": "a new security group",
|
|
6482
7213
|
"stability": "experimental",
|
|
6483
|
-
"summary": "
|
|
7214
|
+
"summary": "Security groups to assign to the task."
|
|
6484
7215
|
},
|
|
6485
7216
|
"immutable": true,
|
|
6486
7217
|
"locationInModule": {
|
|
6487
|
-
"filename": "src/providers/
|
|
6488
|
-
"line":
|
|
7218
|
+
"filename": "src/providers/ecs.ts",
|
|
7219
|
+
"line": 74
|
|
6489
7220
|
},
|
|
6490
|
-
"name": "
|
|
7221
|
+
"name": "securityGroups",
|
|
6491
7222
|
"optional": true,
|
|
6492
7223
|
"type": {
|
|
6493
|
-
"
|
|
7224
|
+
"collection": {
|
|
7225
|
+
"elementtype": {
|
|
7226
|
+
"fqn": "aws-cdk-lib.aws_ec2.ISecurityGroup"
|
|
7227
|
+
},
|
|
7228
|
+
"kind": "array"
|
|
7229
|
+
}
|
|
6494
7230
|
}
|
|
6495
7231
|
},
|
|
6496
7232
|
{
|
|
6497
7233
|
"abstract": true,
|
|
6498
7234
|
"docs": {
|
|
6499
|
-
"default": "
|
|
6500
|
-
"remarks": "This modifies the boot volume size and doesn't add any additional volumes.",
|
|
7235
|
+
"default": "no spot capacity",
|
|
6501
7236
|
"stability": "experimental",
|
|
6502
|
-
"summary": "
|
|
7237
|
+
"summary": "Use spot capacity and set a maximum price for spot instances."
|
|
6503
7238
|
},
|
|
6504
7239
|
"immutable": true,
|
|
6505
7240
|
"locationInModule": {
|
|
6506
|
-
"filename": "src/providers/
|
|
6507
|
-
"line":
|
|
7241
|
+
"filename": "src/providers/ecs.ts",
|
|
7242
|
+
"line": 156
|
|
6508
7243
|
},
|
|
6509
|
-
"name": "
|
|
7244
|
+
"name": "spotMaxPrice",
|
|
6510
7245
|
"optional": true,
|
|
6511
7246
|
"type": {
|
|
6512
|
-
"
|
|
7247
|
+
"primitive": "string"
|
|
6513
7248
|
}
|
|
6514
7249
|
},
|
|
6515
7250
|
{
|
|
6516
7251
|
"abstract": true,
|
|
6517
7252
|
"docs": {
|
|
6518
|
-
"default": "default
|
|
6519
|
-
"
|
|
6520
|
-
"stability": "
|
|
6521
|
-
"summary": "
|
|
7253
|
+
"default": "default size for AMI (usually 30GB for Linux and 50GB for Windows)",
|
|
7254
|
+
"remarks": "This modifies the boot volume size and doesn't add any additional volumes.\n\nEach instance can be used by multiple runners, so make sure there is enough space for all of them.",
|
|
7255
|
+
"stability": "experimental",
|
|
7256
|
+
"summary": "Size of volume available for launched cluster instances."
|
|
6522
7257
|
},
|
|
6523
7258
|
"immutable": true,
|
|
6524
7259
|
"locationInModule": {
|
|
6525
|
-
"filename": "src/providers/
|
|
6526
|
-
"line":
|
|
7260
|
+
"filename": "src/providers/ecs.ts",
|
|
7261
|
+
"line": 141
|
|
6527
7262
|
},
|
|
6528
|
-
"name": "
|
|
7263
|
+
"name": "storageSize",
|
|
6529
7264
|
"optional": true,
|
|
6530
7265
|
"type": {
|
|
6531
|
-
"fqn": "aws-cdk-lib.
|
|
7266
|
+
"fqn": "aws-cdk-lib.Size"
|
|
6532
7267
|
}
|
|
6533
7268
|
},
|
|
6534
7269
|
{
|
|
6535
7270
|
"abstract": true,
|
|
6536
7271
|
"docs": {
|
|
6537
|
-
"default": "default
|
|
6538
|
-
"remarks": "Only the first matched subnet will be used.",
|
|
7272
|
+
"default": "ECS default",
|
|
6539
7273
|
"stability": "experimental",
|
|
6540
|
-
"summary": "
|
|
7274
|
+
"summary": "Subnets to run the runners in."
|
|
6541
7275
|
},
|
|
6542
7276
|
"immutable": true,
|
|
6543
7277
|
"locationInModule": {
|
|
6544
|
-
"filename": "src/providers/
|
|
6545
|
-
"line":
|
|
7278
|
+
"filename": "src/providers/ecs.ts",
|
|
7279
|
+
"line": 67
|
|
6546
7280
|
},
|
|
6547
7281
|
"name": "subnetSelection",
|
|
6548
7282
|
"optional": true,
|
|
@@ -6555,12 +7289,12 @@
|
|
|
6555
7289
|
"docs": {
|
|
6556
7290
|
"default": "default account VPC",
|
|
6557
7291
|
"stability": "experimental",
|
|
6558
|
-
"summary": "VPC
|
|
7292
|
+
"summary": "VPC to launch the runners in."
|
|
6559
7293
|
},
|
|
6560
7294
|
"immutable": true,
|
|
6561
7295
|
"locationInModule": {
|
|
6562
|
-
"filename": "src/providers/
|
|
6563
|
-
"line":
|
|
7296
|
+
"filename": "src/providers/ecs.ts",
|
|
7297
|
+
"line": 60
|
|
6564
7298
|
},
|
|
6565
7299
|
"name": "vpc",
|
|
6566
7300
|
"optional": true,
|
|
@@ -6569,7 +7303,7 @@
|
|
|
6569
7303
|
}
|
|
6570
7304
|
}
|
|
6571
7305
|
],
|
|
6572
|
-
"symbolId": "src/providers/
|
|
7306
|
+
"symbolId": "src/providers/ecs:EcsRunnerProviderProps"
|
|
6573
7307
|
},
|
|
6574
7308
|
"@cloudsnorkel/cdk-github-runners.FargateRunner": {
|
|
6575
7309
|
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
@@ -7393,7 +8127,7 @@
|
|
|
7393
8127
|
},
|
|
7394
8128
|
"locationInModule": {
|
|
7395
8129
|
"filename": "src/runner.ts",
|
|
7396
|
-
"line":
|
|
8130
|
+
"line": 218
|
|
7397
8131
|
},
|
|
7398
8132
|
"parameters": [
|
|
7399
8133
|
{
|
|
@@ -7420,7 +8154,7 @@
|
|
|
7420
8154
|
"kind": "class",
|
|
7421
8155
|
"locationInModule": {
|
|
7422
8156
|
"filename": "src/runner.ts",
|
|
7423
|
-
"line":
|
|
8157
|
+
"line": 199
|
|
7424
8158
|
},
|
|
7425
8159
|
"methods": [
|
|
7426
8160
|
{
|
|
@@ -7431,7 +8165,7 @@
|
|
|
7431
8165
|
},
|
|
7432
8166
|
"locationInModule": {
|
|
7433
8167
|
"filename": "src/runner.ts",
|
|
7434
|
-
"line":
|
|
8168
|
+
"line": 607
|
|
7435
8169
|
},
|
|
7436
8170
|
"name": "metricFailed",
|
|
7437
8171
|
"parameters": [
|
|
@@ -7457,7 +8191,7 @@
|
|
|
7457
8191
|
},
|
|
7458
8192
|
"locationInModule": {
|
|
7459
8193
|
"filename": "src/runner.ts",
|
|
7460
|
-
"line":
|
|
8194
|
+
"line": 552
|
|
7461
8195
|
},
|
|
7462
8196
|
"name": "metricJobCompleted",
|
|
7463
8197
|
"parameters": [
|
|
@@ -7483,7 +8217,7 @@
|
|
|
7483
8217
|
},
|
|
7484
8218
|
"locationInModule": {
|
|
7485
8219
|
"filename": "src/runner.ts",
|
|
7486
|
-
"line":
|
|
8220
|
+
"line": 598
|
|
7487
8221
|
},
|
|
7488
8222
|
"name": "metricSucceeded",
|
|
7489
8223
|
"parameters": [
|
|
@@ -7509,7 +8243,7 @@
|
|
|
7509
8243
|
},
|
|
7510
8244
|
"locationInModule": {
|
|
7511
8245
|
"filename": "src/runner.ts",
|
|
7512
|
-
"line":
|
|
8246
|
+
"line": 614
|
|
7513
8247
|
},
|
|
7514
8248
|
"name": "metricTime",
|
|
7515
8249
|
"parameters": [
|
|
@@ -7538,7 +8272,7 @@
|
|
|
7538
8272
|
"immutable": true,
|
|
7539
8273
|
"locationInModule": {
|
|
7540
8274
|
"filename": "src/runner.ts",
|
|
7541
|
-
"line":
|
|
8275
|
+
"line": 203
|
|
7542
8276
|
},
|
|
7543
8277
|
"name": "providers",
|
|
7544
8278
|
"type": {
|
|
@@ -7558,7 +8292,7 @@
|
|
|
7558
8292
|
"immutable": true,
|
|
7559
8293
|
"locationInModule": {
|
|
7560
8294
|
"filename": "src/runner.ts",
|
|
7561
|
-
"line":
|
|
8295
|
+
"line": 208
|
|
7562
8296
|
},
|
|
7563
8297
|
"name": "secrets",
|
|
7564
8298
|
"type": {
|
|
@@ -7572,7 +8306,7 @@
|
|
|
7572
8306
|
"immutable": true,
|
|
7573
8307
|
"locationInModule": {
|
|
7574
8308
|
"filename": "src/runner.ts",
|
|
7575
|
-
"line":
|
|
8309
|
+
"line": 218
|
|
7576
8310
|
},
|
|
7577
8311
|
"name": "props",
|
|
7578
8312
|
"optional": true,
|
|
@@ -7594,7 +8328,7 @@
|
|
|
7594
8328
|
"kind": "interface",
|
|
7595
8329
|
"locationInModule": {
|
|
7596
8330
|
"filename": "src/runner.ts",
|
|
7597
|
-
"line":
|
|
8331
|
+
"line": 30
|
|
7598
8332
|
},
|
|
7599
8333
|
"name": "GitHubRunnersProps",
|
|
7600
8334
|
"properties": [
|
|
@@ -7609,7 +8343,7 @@
|
|
|
7609
8343
|
"immutable": true,
|
|
7610
8344
|
"locationInModule": {
|
|
7611
8345
|
"filename": "src/runner.ts",
|
|
7612
|
-
"line":
|
|
8346
|
+
"line": 53
|
|
7613
8347
|
},
|
|
7614
8348
|
"name": "allowPublicSubnet",
|
|
7615
8349
|
"optional": true,
|
|
@@ -7627,7 +8361,7 @@
|
|
|
7627
8361
|
"immutable": true,
|
|
7628
8362
|
"locationInModule": {
|
|
7629
8363
|
"filename": "src/runner.ts",
|
|
7630
|
-
"line":
|
|
8364
|
+
"line": 83
|
|
7631
8365
|
},
|
|
7632
8366
|
"name": "extraCertificates",
|
|
7633
8367
|
"optional": true,
|
|
@@ -7646,7 +8380,7 @@
|
|
|
7646
8380
|
"immutable": true,
|
|
7647
8381
|
"locationInModule": {
|
|
7648
8382
|
"filename": "src/runner.ts",
|
|
7649
|
-
"line":
|
|
8383
|
+
"line": 90
|
|
7650
8384
|
},
|
|
7651
8385
|
"name": "idleTimeout",
|
|
7652
8386
|
"optional": true,
|
|
@@ -7664,7 +8398,7 @@
|
|
|
7664
8398
|
"immutable": true,
|
|
7665
8399
|
"locationInModule": {
|
|
7666
8400
|
"filename": "src/runner.ts",
|
|
7667
|
-
"line":
|
|
8401
|
+
"line": 97
|
|
7668
8402
|
},
|
|
7669
8403
|
"name": "logOptions",
|
|
7670
8404
|
"optional": true,
|
|
@@ -7683,7 +8417,7 @@
|
|
|
7683
8417
|
"immutable": true,
|
|
7684
8418
|
"locationInModule": {
|
|
7685
8419
|
"filename": "src/runner.ts",
|
|
7686
|
-
"line":
|
|
8420
|
+
"line": 36
|
|
7687
8421
|
},
|
|
7688
8422
|
"name": "providers",
|
|
7689
8423
|
"optional": true,
|
|
@@ -7706,7 +8440,7 @@
|
|
|
7706
8440
|
"immutable": true,
|
|
7707
8441
|
"locationInModule": {
|
|
7708
8442
|
"filename": "src/runner.ts",
|
|
7709
|
-
"line":
|
|
8443
|
+
"line": 58
|
|
7710
8444
|
},
|
|
7711
8445
|
"name": "securityGroup",
|
|
7712
8446
|
"optional": true,
|
|
@@ -7714,6 +8448,44 @@
|
|
|
7714
8448
|
"fqn": "aws-cdk-lib.aws_ec2.ISecurityGroup"
|
|
7715
8449
|
}
|
|
7716
8450
|
},
|
|
8451
|
+
{
|
|
8452
|
+
"abstract": true,
|
|
8453
|
+
"docs": {
|
|
8454
|
+
"default": "LambdaAccess.lambdaUrl()",
|
|
8455
|
+
"remarks": "Once you finish the setup process, you can set this to `LambdaAccess.noAccess()` to remove access to the setup function. You can also use `LambdaAccess.apiGateway({ allowedIps: ['my-ip/0']})` to limit access to your IP only.",
|
|
8456
|
+
"stability": "experimental",
|
|
8457
|
+
"summary": "Access configuration for the setup function."
|
|
8458
|
+
},
|
|
8459
|
+
"immutable": true,
|
|
8460
|
+
"locationInModule": {
|
|
8461
|
+
"filename": "src/runner.ts",
|
|
8462
|
+
"line": 104
|
|
8463
|
+
},
|
|
8464
|
+
"name": "setupAccess",
|
|
8465
|
+
"optional": true,
|
|
8466
|
+
"type": {
|
|
8467
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.LambdaAccess"
|
|
8468
|
+
}
|
|
8469
|
+
},
|
|
8470
|
+
{
|
|
8471
|
+
"abstract": true,
|
|
8472
|
+
"docs": {
|
|
8473
|
+
"default": "LambdaAccess.noAccess()",
|
|
8474
|
+
"remarks": "This function returns a lot of sensitive information about the runner, so you should only allow access to it from trusted IPs, if at all.",
|
|
8475
|
+
"stability": "experimental",
|
|
8476
|
+
"summary": "Access configuration for the status function."
|
|
8477
|
+
},
|
|
8478
|
+
"immutable": true,
|
|
8479
|
+
"locationInModule": {
|
|
8480
|
+
"filename": "src/runner.ts",
|
|
8481
|
+
"line": 123
|
|
8482
|
+
},
|
|
8483
|
+
"name": "statusAccess",
|
|
8484
|
+
"optional": true,
|
|
8485
|
+
"type": {
|
|
8486
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.LambdaAccess"
|
|
8487
|
+
}
|
|
8488
|
+
},
|
|
7717
8489
|
{
|
|
7718
8490
|
"abstract": true,
|
|
7719
8491
|
"docs": {
|
|
@@ -7724,7 +8496,7 @@
|
|
|
7724
8496
|
"immutable": true,
|
|
7725
8497
|
"locationInModule": {
|
|
7726
8498
|
"filename": "src/runner.ts",
|
|
7727
|
-
"line":
|
|
8499
|
+
"line": 41
|
|
7728
8500
|
},
|
|
7729
8501
|
"name": "vpc",
|
|
7730
8502
|
"optional": true,
|
|
@@ -7742,13 +8514,32 @@
|
|
|
7742
8514
|
"immutable": true,
|
|
7743
8515
|
"locationInModule": {
|
|
7744
8516
|
"filename": "src/runner.ts",
|
|
7745
|
-
"line":
|
|
8517
|
+
"line": 46
|
|
7746
8518
|
},
|
|
7747
8519
|
"name": "vpcSubnets",
|
|
7748
8520
|
"optional": true,
|
|
7749
8521
|
"type": {
|
|
7750
8522
|
"fqn": "aws-cdk-lib.aws_ec2.SubnetSelection"
|
|
7751
8523
|
}
|
|
8524
|
+
},
|
|
8525
|
+
{
|
|
8526
|
+
"abstract": true,
|
|
8527
|
+
"docs": {
|
|
8528
|
+
"default": "LambdaAccess.lambdaUrl()",
|
|
8529
|
+
"remarks": "This function is called by GitHub when a new workflow job is scheduled. For an extra layer of security, you can set this to `LambdaAccess.apiGateway({ allowedIps: LambdaAccess.githubWebhookIps() })`.\n\nYou can also set this to `LambdaAccess.privateApiGateway()` if your GitHub Enterprise Server is hosted in a VPC. This will create an API Gateway endpoint that's only accessible from within the VPC.\n\n*WARNING*: changing access type may change the URL. When the URL changes, you must update GitHub as well.",
|
|
8530
|
+
"stability": "experimental",
|
|
8531
|
+
"summary": "Access configuration for the webhook function."
|
|
8532
|
+
},
|
|
8533
|
+
"immutable": true,
|
|
8534
|
+
"locationInModule": {
|
|
8535
|
+
"filename": "src/runner.ts",
|
|
8536
|
+
"line": 116
|
|
8537
|
+
},
|
|
8538
|
+
"name": "webhookAccess",
|
|
8539
|
+
"optional": true,
|
|
8540
|
+
"type": {
|
|
8541
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.LambdaAccess"
|
|
8542
|
+
}
|
|
7752
8543
|
}
|
|
7753
8544
|
],
|
|
7754
8545
|
"symbolId": "src/runner:GitHubRunnersProps"
|
|
@@ -8566,6 +9357,116 @@
|
|
|
8566
9357
|
],
|
|
8567
9358
|
"symbolId": "src/providers/image-builders/aws-image-builder/builder:ImageBuilderComponentProperties"
|
|
8568
9359
|
},
|
|
9360
|
+
"@cloudsnorkel/cdk-github-runners.LambdaAccess": {
|
|
9361
|
+
"abstract": true,
|
|
9362
|
+
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
9363
|
+
"docs": {
|
|
9364
|
+
"remarks": "Use this to limit access to these functions.",
|
|
9365
|
+
"stability": "experimental",
|
|
9366
|
+
"summary": "Access configuration options for Lambda functions like setup and webhook function."
|
|
9367
|
+
},
|
|
9368
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.LambdaAccess",
|
|
9369
|
+
"initializer": {
|
|
9370
|
+
"docs": {
|
|
9371
|
+
"stability": "experimental"
|
|
9372
|
+
}
|
|
9373
|
+
},
|
|
9374
|
+
"kind": "class",
|
|
9375
|
+
"locationInModule": {
|
|
9376
|
+
"filename": "src/access.ts",
|
|
9377
|
+
"line": 35
|
|
9378
|
+
},
|
|
9379
|
+
"methods": [
|
|
9380
|
+
{
|
|
9381
|
+
"docs": {
|
|
9382
|
+
"remarks": "This is the most secure option, but requires additional configuration. It allows you to limit access to specific IP addresses and even to a specific VPC.\n\nTo limit access to GitHub.com use:\n\n```\nLambdaAccess.apiGateway({\n allowedIps: LambdaAccess.githubWebhookIps(),\n});\n```\n\nAlternatively, get and manually update the list manually with:\n\n```\ncurl https://api.github.com/meta | jq .hooks\n```",
|
|
9383
|
+
"stability": "experimental",
|
|
9384
|
+
"summary": "Provide access using API Gateway."
|
|
9385
|
+
},
|
|
9386
|
+
"locationInModule": {
|
|
9387
|
+
"filename": "src/access.ts",
|
|
9388
|
+
"line": 67
|
|
9389
|
+
},
|
|
9390
|
+
"name": "apiGateway",
|
|
9391
|
+
"parameters": [
|
|
9392
|
+
{
|
|
9393
|
+
"name": "props",
|
|
9394
|
+
"optional": true,
|
|
9395
|
+
"type": {
|
|
9396
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.ApiGatewayAccessProps"
|
|
9397
|
+
}
|
|
9398
|
+
}
|
|
9399
|
+
],
|
|
9400
|
+
"returns": {
|
|
9401
|
+
"type": {
|
|
9402
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.LambdaAccess"
|
|
9403
|
+
}
|
|
9404
|
+
},
|
|
9405
|
+
"static": true
|
|
9406
|
+
},
|
|
9407
|
+
{
|
|
9408
|
+
"docs": {
|
|
9409
|
+
"remarks": "Note that downloading dynamic data during deployment is not recommended in CDK. This is a workaround for the lack of a better solution.",
|
|
9410
|
+
"stability": "experimental",
|
|
9411
|
+
"summary": "Downloads the list of IP addresses used by GitHub.com for webhooks."
|
|
9412
|
+
},
|
|
9413
|
+
"locationInModule": {
|
|
9414
|
+
"filename": "src/access.ts",
|
|
9415
|
+
"line": 76
|
|
9416
|
+
},
|
|
9417
|
+
"name": "githubWebhookIps",
|
|
9418
|
+
"returns": {
|
|
9419
|
+
"type": {
|
|
9420
|
+
"collection": {
|
|
9421
|
+
"elementtype": {
|
|
9422
|
+
"primitive": "string"
|
|
9423
|
+
},
|
|
9424
|
+
"kind": "array"
|
|
9425
|
+
}
|
|
9426
|
+
}
|
|
9427
|
+
},
|
|
9428
|
+
"static": true
|
|
9429
|
+
},
|
|
9430
|
+
{
|
|
9431
|
+
"docs": {
|
|
9432
|
+
"remarks": "This is the default and simplest option. It puts no limits on the requester, but the Lambda functions themselves authenticate every request.",
|
|
9433
|
+
"stability": "experimental",
|
|
9434
|
+
"summary": "Provide access using Lambda URL."
|
|
9435
|
+
},
|
|
9436
|
+
"locationInModule": {
|
|
9437
|
+
"filename": "src/access.ts",
|
|
9438
|
+
"line": 46
|
|
9439
|
+
},
|
|
9440
|
+
"name": "lambdaUrl",
|
|
9441
|
+
"returns": {
|
|
9442
|
+
"type": {
|
|
9443
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.LambdaAccess"
|
|
9444
|
+
}
|
|
9445
|
+
},
|
|
9446
|
+
"static": true
|
|
9447
|
+
},
|
|
9448
|
+
{
|
|
9449
|
+
"docs": {
|
|
9450
|
+
"remarks": "This is useful for the setup function after setup is done.",
|
|
9451
|
+
"stability": "experimental",
|
|
9452
|
+
"summary": "Disables access to the configured Lambda function."
|
|
9453
|
+
},
|
|
9454
|
+
"locationInModule": {
|
|
9455
|
+
"filename": "src/access.ts",
|
|
9456
|
+
"line": 39
|
|
9457
|
+
},
|
|
9458
|
+
"name": "noAccess",
|
|
9459
|
+
"returns": {
|
|
9460
|
+
"type": {
|
|
9461
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.LambdaAccess"
|
|
9462
|
+
}
|
|
9463
|
+
},
|
|
9464
|
+
"static": true
|
|
9465
|
+
}
|
|
9466
|
+
],
|
|
9467
|
+
"name": "LambdaAccess",
|
|
9468
|
+
"symbolId": "src/access:LambdaAccess"
|
|
9469
|
+
},
|
|
8569
9470
|
"@cloudsnorkel/cdk-github-runners.LambdaRunner": {
|
|
8570
9471
|
"assembly": "@cloudsnorkel/cdk-github-runners",
|
|
8571
9472
|
"base": "@cloudsnorkel/cdk-github-runners.LambdaRunnerProvider",
|
|
@@ -9552,7 +10453,7 @@
|
|
|
9552
10453
|
"kind": "interface",
|
|
9553
10454
|
"locationInModule": {
|
|
9554
10455
|
"filename": "src/runner.ts",
|
|
9555
|
-
"line":
|
|
10456
|
+
"line": 129
|
|
9556
10457
|
},
|
|
9557
10458
|
"name": "LogOptions",
|
|
9558
10459
|
"properties": [
|
|
@@ -9566,7 +10467,7 @@
|
|
|
9566
10467
|
"immutable": true,
|
|
9567
10468
|
"locationInModule": {
|
|
9568
10469
|
"filename": "src/runner.ts",
|
|
9569
|
-
"line":
|
|
10470
|
+
"line": 140
|
|
9570
10471
|
},
|
|
9571
10472
|
"name": "includeExecutionData",
|
|
9572
10473
|
"optional": true,
|
|
@@ -9584,7 +10485,7 @@
|
|
|
9584
10485
|
"immutable": true,
|
|
9585
10486
|
"locationInModule": {
|
|
9586
10487
|
"filename": "src/runner.ts",
|
|
9587
|
-
"line":
|
|
10488
|
+
"line": 147
|
|
9588
10489
|
},
|
|
9589
10490
|
"name": "level",
|
|
9590
10491
|
"optional": true,
|
|
@@ -9601,7 +10502,7 @@
|
|
|
9601
10502
|
"immutable": true,
|
|
9602
10503
|
"locationInModule": {
|
|
9603
10504
|
"filename": "src/runner.ts",
|
|
9604
|
-
"line":
|
|
10505
|
+
"line": 133
|
|
9605
10506
|
},
|
|
9606
10507
|
"name": "logGroupName",
|
|
9607
10508
|
"optional": true,
|
|
@@ -9620,7 +10521,7 @@
|
|
|
9620
10521
|
"immutable": true,
|
|
9621
10522
|
"locationInModule": {
|
|
9622
10523
|
"filename": "src/runner.ts",
|
|
9623
|
-
"line":
|
|
10524
|
+
"line": 156
|
|
9624
10525
|
},
|
|
9625
10526
|
"name": "logRetention",
|
|
9626
10527
|
"optional": true,
|
|
@@ -11974,6 +12875,6 @@
|
|
|
11974
12875
|
"symbolId": "src/providers/image-builders/aws-image-builder/deprecated/windows-components:WindowsComponents"
|
|
11975
12876
|
}
|
|
11976
12877
|
},
|
|
11977
|
-
"version": "0.9.
|
|
11978
|
-
"fingerprint": "
|
|
12878
|
+
"version": "0.9.3",
|
|
12879
|
+
"fingerprint": "wm90SjuWDjOEdZ2XvCRnYQeU6aZ0JZPKovmkSiB3B2I="
|
|
11979
12880
|
}
|