@cloudsnorkel/cdk-github-runners 0.14.12 → 0.14.14
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 +107 -42
- package/API.md +277 -8
- package/assets/delete-failed-runner.lambda/index.js +23 -1
- package/assets/idle-runner-repear.lambda/index.js +23 -1
- package/assets/image-builders/aws-image-builder/versioner.lambda/index.js +23 -1
- package/assets/setup.lambda/index.html +8 -8
- package/assets/status.lambda/index.js +23 -1
- package/assets/token-retriever.lambda/index.js +23 -1
- package/assets/webhook-handler.lambda/index.js +23 -1
- package/assets/webhook-redelivery.lambda/index.js +23 -1
- package/lib/access.js +1 -1
- package/lib/image-builders/api.js +1 -1
- package/lib/image-builders/aws-image-builder/builder.js +1 -1
- package/lib/image-builders/aws-image-builder/deprecated/ami.js +1 -1
- package/lib/image-builders/aws-image-builder/deprecated/container.js +1 -1
- 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/codebuild-deprecated.js +3 -3
- package/lib/image-builders/codebuild.js +3 -3
- package/lib/image-builders/components.d.ts +4 -0
- package/lib/image-builders/components.js +46 -13
- package/lib/image-builders/static.js +1 -1
- package/lib/providers/codebuild.js +4 -4
- package/lib/providers/common.js +3 -3
- package/lib/providers/ec2.d.ts +1 -0
- package/lib/providers/ec2.js +5 -3
- package/lib/providers/ecs.d.ts +24 -0
- package/lib/providers/ecs.js +19 -7
- package/lib/providers/fargate.js +2 -2
- package/lib/providers/lambda.js +2 -2
- package/lib/runner.js +3 -3
- package/lib/secrets.js +1 -1
- package/package.json +18 -18
package/.jsii
CHANGED
|
@@ -3834,7 +3834,7 @@
|
|
|
3834
3834
|
"stability": "experimental"
|
|
3835
3835
|
},
|
|
3836
3836
|
"homepage": "https://github.com/CloudSnorkel/cdk-github-runners.git",
|
|
3837
|
-
"jsiiVersion": "5.8.
|
|
3837
|
+
"jsiiVersion": "5.8.22 (build 160a3ef)",
|
|
3838
3838
|
"keywords": [
|
|
3839
3839
|
"aws",
|
|
3840
3840
|
"aws-cdk",
|
|
@@ -6821,7 +6821,7 @@
|
|
|
6821
6821
|
},
|
|
6822
6822
|
"locationInModule": {
|
|
6823
6823
|
"filename": "src/providers/ec2.ts",
|
|
6824
|
-
"line":
|
|
6824
|
+
"line": 382
|
|
6825
6825
|
},
|
|
6826
6826
|
"parameters": [
|
|
6827
6827
|
{
|
|
@@ -6848,7 +6848,7 @@
|
|
|
6848
6848
|
"kind": "class",
|
|
6849
6849
|
"locationInModule": {
|
|
6850
6850
|
"filename": "src/providers/ec2.ts",
|
|
6851
|
-
"line":
|
|
6851
|
+
"line": 623
|
|
6852
6852
|
},
|
|
6853
6853
|
"name": "Ec2Runner",
|
|
6854
6854
|
"symbolId": "src/providers/ec2:Ec2Runner"
|
|
@@ -6868,7 +6868,7 @@
|
|
|
6868
6868
|
},
|
|
6869
6869
|
"locationInModule": {
|
|
6870
6870
|
"filename": "src/providers/ec2.ts",
|
|
6871
|
-
"line":
|
|
6871
|
+
"line": 382
|
|
6872
6872
|
},
|
|
6873
6873
|
"parameters": [
|
|
6874
6874
|
{
|
|
@@ -6903,13 +6903,13 @@
|
|
|
6903
6903
|
"methods": [
|
|
6904
6904
|
{
|
|
6905
6905
|
"docs": {
|
|
6906
|
-
"remarks": "You can customize the OS, architecture, VPC, subnet, security groups, etc. by passing in props.\n\nYou can add components to the image builder by calling `imageBuilder.addComponent()`.\n\nThe default OS is Ubuntu running on x64 architecture.\n\nIncluded components:\n * `RunnerImageComponent.requiredPackages()`\n * `RunnerImageComponent.runnerUser()`\n * `RunnerImageComponent.git()`\n * `RunnerImageComponent.githubCli()`\n * `RunnerImageComponent.awsCli()`\n * `RunnerImageComponent.docker()`\n * `RunnerImageComponent.githubRunner()`",
|
|
6906
|
+
"remarks": "You can customize the OS, architecture, VPC, subnet, security groups, etc. by passing in props.\n\nYou can add components to the image builder by calling `imageBuilder.addComponent()`.\n\nThe default OS is Ubuntu running on x64 architecture.\n\nIncluded components:\n * `RunnerImageComponent.requiredPackages()`\n * `RunnerImageComponent.cloudWatchAgent()`\n * `RunnerImageComponent.runnerUser()`\n * `RunnerImageComponent.git()`\n * `RunnerImageComponent.githubCli()`\n * `RunnerImageComponent.awsCli()`\n * `RunnerImageComponent.docker()`\n * `RunnerImageComponent.githubRunner()`",
|
|
6907
6907
|
"stability": "experimental",
|
|
6908
6908
|
"summary": "Create new image builder that builds EC2 specific runner images."
|
|
6909
6909
|
},
|
|
6910
6910
|
"locationInModule": {
|
|
6911
6911
|
"filename": "src/providers/ec2.ts",
|
|
6912
|
-
"line":
|
|
6912
|
+
"line": 328
|
|
6913
6913
|
},
|
|
6914
6914
|
"name": "imageBuilder",
|
|
6915
6915
|
"parameters": [
|
|
@@ -6948,7 +6948,7 @@
|
|
|
6948
6948
|
},
|
|
6949
6949
|
"locationInModule": {
|
|
6950
6950
|
"filename": "src/providers/ec2.ts",
|
|
6951
|
-
"line":
|
|
6951
|
+
"line": 445
|
|
6952
6952
|
},
|
|
6953
6953
|
"name": "getStepFunctionTask",
|
|
6954
6954
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -6977,7 +6977,7 @@
|
|
|
6977
6977
|
},
|
|
6978
6978
|
"locationInModule": {
|
|
6979
6979
|
"filename": "src/providers/ec2.ts",
|
|
6980
|
-
"line":
|
|
6980
|
+
"line": 563
|
|
6981
6981
|
},
|
|
6982
6982
|
"name": "grantStateMachine",
|
|
6983
6983
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -7046,7 +7046,7 @@
|
|
|
7046
7046
|
},
|
|
7047
7047
|
"locationInModule": {
|
|
7048
7048
|
"filename": "src/providers/ec2.ts",
|
|
7049
|
-
"line":
|
|
7049
|
+
"line": 593
|
|
7050
7050
|
},
|
|
7051
7051
|
"name": "status",
|
|
7052
7052
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -7075,7 +7075,7 @@
|
|
|
7075
7075
|
"immutable": true,
|
|
7076
7076
|
"locationInModule": {
|
|
7077
7077
|
"filename": "src/providers/ec2.ts",
|
|
7078
|
-
"line":
|
|
7078
|
+
"line": 615
|
|
7079
7079
|
},
|
|
7080
7080
|
"name": "connections",
|
|
7081
7081
|
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
@@ -7091,7 +7091,7 @@
|
|
|
7091
7091
|
"immutable": true,
|
|
7092
7092
|
"locationInModule": {
|
|
7093
7093
|
"filename": "src/providers/ec2.ts",
|
|
7094
|
-
"line":
|
|
7094
|
+
"line": 355
|
|
7095
7095
|
},
|
|
7096
7096
|
"name": "grantPrincipal",
|
|
7097
7097
|
"overrides": "aws-cdk-lib.aws_iam.IGrantable",
|
|
@@ -7107,7 +7107,7 @@
|
|
|
7107
7107
|
"immutable": true,
|
|
7108
7108
|
"locationInModule": {
|
|
7109
7109
|
"filename": "src/providers/ec2.ts",
|
|
7110
|
-
"line":
|
|
7110
|
+
"line": 350
|
|
7111
7111
|
},
|
|
7112
7112
|
"name": "labels",
|
|
7113
7113
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -7129,7 +7129,7 @@
|
|
|
7129
7129
|
"immutable": true,
|
|
7130
7130
|
"locationInModule": {
|
|
7131
7131
|
"filename": "src/providers/ec2.ts",
|
|
7132
|
-
"line":
|
|
7132
|
+
"line": 362
|
|
7133
7133
|
},
|
|
7134
7134
|
"name": "logGroup",
|
|
7135
7135
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -7145,7 +7145,7 @@
|
|
|
7145
7145
|
"immutable": true,
|
|
7146
7146
|
"locationInModule": {
|
|
7147
7147
|
"filename": "src/providers/ec2.ts",
|
|
7148
|
-
"line":
|
|
7148
|
+
"line": 364
|
|
7149
7149
|
},
|
|
7150
7150
|
"name": "retryableErrors",
|
|
7151
7151
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -7465,7 +7465,7 @@
|
|
|
7465
7465
|
},
|
|
7466
7466
|
"locationInModule": {
|
|
7467
7467
|
"filename": "src/providers/ecs.ts",
|
|
7468
|
-
"line":
|
|
7468
|
+
"line": 389
|
|
7469
7469
|
},
|
|
7470
7470
|
"parameters": [
|
|
7471
7471
|
{
|
|
@@ -7495,7 +7495,7 @@
|
|
|
7495
7495
|
"kind": "class",
|
|
7496
7496
|
"locationInModule": {
|
|
7497
7497
|
"filename": "src/providers/ecs.ts",
|
|
7498
|
-
"line":
|
|
7498
|
+
"line": 259
|
|
7499
7499
|
},
|
|
7500
7500
|
"methods": [
|
|
7501
7501
|
{
|
|
@@ -7506,7 +7506,7 @@
|
|
|
7506
7506
|
},
|
|
7507
7507
|
"locationInModule": {
|
|
7508
7508
|
"filename": "src/providers/ecs.ts",
|
|
7509
|
-
"line":
|
|
7509
|
+
"line": 278
|
|
7510
7510
|
},
|
|
7511
7511
|
"name": "imageBuilder",
|
|
7512
7512
|
"parameters": [
|
|
@@ -7545,7 +7545,7 @@
|
|
|
7545
7545
|
},
|
|
7546
7546
|
"locationInModule": {
|
|
7547
7547
|
"filename": "src/providers/ecs.ts",
|
|
7548
|
-
"line":
|
|
7548
|
+
"line": 612
|
|
7549
7549
|
},
|
|
7550
7550
|
"name": "getStepFunctionTask",
|
|
7551
7551
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -7574,7 +7574,7 @@
|
|
|
7574
7574
|
},
|
|
7575
7575
|
"locationInModule": {
|
|
7576
7576
|
"filename": "src/providers/ecs.ts",
|
|
7577
|
-
"line":
|
|
7577
|
+
"line": 670
|
|
7578
7578
|
},
|
|
7579
7579
|
"name": "grantStateMachine",
|
|
7580
7580
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -7643,7 +7643,7 @@
|
|
|
7643
7643
|
},
|
|
7644
7644
|
"locationInModule": {
|
|
7645
7645
|
"filename": "src/providers/ecs.ts",
|
|
7646
|
-
"line":
|
|
7646
|
+
"line": 673
|
|
7647
7647
|
},
|
|
7648
7648
|
"name": "status",
|
|
7649
7649
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -7672,7 +7672,7 @@
|
|
|
7672
7672
|
"immutable": true,
|
|
7673
7673
|
"locationInModule": {
|
|
7674
7674
|
"filename": "src/providers/ecs.ts",
|
|
7675
|
-
"line":
|
|
7675
|
+
"line": 343
|
|
7676
7676
|
},
|
|
7677
7677
|
"name": "connections",
|
|
7678
7678
|
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
@@ -7688,7 +7688,7 @@
|
|
|
7688
7688
|
"immutable": true,
|
|
7689
7689
|
"locationInModule": {
|
|
7690
7690
|
"filename": "src/providers/ecs.ts",
|
|
7691
|
-
"line":
|
|
7691
|
+
"line": 338
|
|
7692
7692
|
},
|
|
7693
7693
|
"name": "grantPrincipal",
|
|
7694
7694
|
"overrides": "aws-cdk-lib.aws_iam.IGrantable",
|
|
@@ -7704,7 +7704,7 @@
|
|
|
7704
7704
|
"immutable": true,
|
|
7705
7705
|
"locationInModule": {
|
|
7706
7706
|
"filename": "src/providers/ecs.ts",
|
|
7707
|
-
"line":
|
|
7707
|
+
"line": 318
|
|
7708
7708
|
},
|
|
7709
7709
|
"name": "labels",
|
|
7710
7710
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -7726,7 +7726,7 @@
|
|
|
7726
7726
|
"immutable": true,
|
|
7727
7727
|
"locationInModule": {
|
|
7728
7728
|
"filename": "src/providers/ecs.ts",
|
|
7729
|
-
"line":
|
|
7729
|
+
"line": 355
|
|
7730
7730
|
},
|
|
7731
7731
|
"name": "logGroup",
|
|
7732
7732
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -7742,7 +7742,7 @@
|
|
|
7742
7742
|
"immutable": true,
|
|
7743
7743
|
"locationInModule": {
|
|
7744
7744
|
"filename": "src/providers/ecs.ts",
|
|
7745
|
-
"line":
|
|
7745
|
+
"line": 382
|
|
7746
7746
|
},
|
|
7747
7747
|
"name": "retryableErrors",
|
|
7748
7748
|
"overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
|
|
@@ -8025,6 +8025,54 @@
|
|
|
8025
8025
|
"primitive": "number"
|
|
8026
8026
|
}
|
|
8027
8027
|
},
|
|
8028
|
+
{
|
|
8029
|
+
"abstract": true,
|
|
8030
|
+
"docs": {
|
|
8031
|
+
"default": "undefined (no placement constraints)",
|
|
8032
|
+
"remarks": "Example: [ecs.PlacementConstraint.memberOf('ecs-placement')]",
|
|
8033
|
+
"stability": "experimental",
|
|
8034
|
+
"summary": "ECS placement constraints to influence task placement."
|
|
8035
|
+
},
|
|
8036
|
+
"immutable": true,
|
|
8037
|
+
"locationInModule": {
|
|
8038
|
+
"filename": "src/providers/ecs.ts",
|
|
8039
|
+
"line": 210
|
|
8040
|
+
},
|
|
8041
|
+
"name": "placementConstraints",
|
|
8042
|
+
"optional": true,
|
|
8043
|
+
"type": {
|
|
8044
|
+
"collection": {
|
|
8045
|
+
"elementtype": {
|
|
8046
|
+
"fqn": "aws-cdk-lib.aws_ecs.PlacementConstraint"
|
|
8047
|
+
},
|
|
8048
|
+
"kind": "array"
|
|
8049
|
+
}
|
|
8050
|
+
}
|
|
8051
|
+
},
|
|
8052
|
+
{
|
|
8053
|
+
"abstract": true,
|
|
8054
|
+
"docs": {
|
|
8055
|
+
"default": "undefined (no placement strategies)",
|
|
8056
|
+
"remarks": "Example: [ecs.PlacementStrategy.packedByCpu()]",
|
|
8057
|
+
"stability": "experimental",
|
|
8058
|
+
"summary": "ECS placement strategies to influence task placement."
|
|
8059
|
+
},
|
|
8060
|
+
"immutable": true,
|
|
8061
|
+
"locationInModule": {
|
|
8062
|
+
"filename": "src/providers/ecs.ts",
|
|
8063
|
+
"line": 201
|
|
8064
|
+
},
|
|
8065
|
+
"name": "placementStrategies",
|
|
8066
|
+
"optional": true,
|
|
8067
|
+
"type": {
|
|
8068
|
+
"collection": {
|
|
8069
|
+
"elementtype": {
|
|
8070
|
+
"fqn": "aws-cdk-lib.aws_ecs.PlacementStrategy"
|
|
8071
|
+
},
|
|
8072
|
+
"kind": "array"
|
|
8073
|
+
}
|
|
8074
|
+
}
|
|
8075
|
+
},
|
|
8028
8076
|
{
|
|
8029
8077
|
"abstract": true,
|
|
8030
8078
|
"docs": {
|
|
@@ -12926,7 +12974,7 @@
|
|
|
12926
12974
|
},
|
|
12927
12975
|
"locationInModule": {
|
|
12928
12976
|
"filename": "src/image-builders/components.ts",
|
|
12929
|
-
"line":
|
|
12977
|
+
"line": 181
|
|
12930
12978
|
},
|
|
12931
12979
|
"name": "awsCli",
|
|
12932
12980
|
"returns": {
|
|
@@ -12936,6 +12984,23 @@
|
|
|
12936
12984
|
},
|
|
12937
12985
|
"static": true
|
|
12938
12986
|
},
|
|
12987
|
+
{
|
|
12988
|
+
"docs": {
|
|
12989
|
+
"stability": "experimental",
|
|
12990
|
+
"summary": "A component to install CloudWatch Agent for the runner so we can send logs."
|
|
12991
|
+
},
|
|
12992
|
+
"locationInModule": {
|
|
12993
|
+
"filename": "src/image-builders/components.ts",
|
|
12994
|
+
"line": 107
|
|
12995
|
+
},
|
|
12996
|
+
"name": "cloudWatchAgent",
|
|
12997
|
+
"returns": {
|
|
12998
|
+
"type": {
|
|
12999
|
+
"fqn": "@cloudsnorkel/cdk-github-runners.RunnerImageComponent"
|
|
13000
|
+
}
|
|
13001
|
+
},
|
|
13002
|
+
"static": true
|
|
13003
|
+
},
|
|
12939
13004
|
{
|
|
12940
13005
|
"docs": {
|
|
12941
13006
|
"remarks": "The order of operations is (1) assets (2) commands (3) docker commands.\n\nUse this to customize the image for the runner.\n\n**WARNING:** Docker commands are not guaranteed to be included before the next component",
|
|
@@ -12970,7 +13035,7 @@
|
|
|
12970
13035
|
},
|
|
12971
13036
|
"locationInModule": {
|
|
12972
13037
|
"filename": "src/image-builders/components.ts",
|
|
12973
|
-
"line":
|
|
13038
|
+
"line": 399
|
|
12974
13039
|
},
|
|
12975
13040
|
"name": "docker",
|
|
12976
13041
|
"returns": {
|
|
@@ -12988,7 +13053,7 @@
|
|
|
12988
13053
|
},
|
|
12989
13054
|
"locationInModule": {
|
|
12990
13055
|
"filename": "src/image-builders/components.ts",
|
|
12991
|
-
"line":
|
|
13056
|
+
"line": 477
|
|
12992
13057
|
},
|
|
12993
13058
|
"name": "dockerInDocker",
|
|
12994
13059
|
"returns": {
|
|
@@ -13006,7 +13071,7 @@
|
|
|
13006
13071
|
},
|
|
13007
13072
|
"locationInModule": {
|
|
13008
13073
|
"filename": "src/image-builders/components.ts",
|
|
13009
|
-
"line":
|
|
13074
|
+
"line": 580
|
|
13010
13075
|
},
|
|
13011
13076
|
"name": "environmentVariables",
|
|
13012
13077
|
"parameters": [
|
|
@@ -13037,7 +13102,7 @@
|
|
|
13037
13102
|
},
|
|
13038
13103
|
"locationInModule": {
|
|
13039
13104
|
"filename": "src/image-builders/components.ts",
|
|
13040
|
-
"line":
|
|
13105
|
+
"line": 487
|
|
13041
13106
|
},
|
|
13042
13107
|
"name": "extraCertificates",
|
|
13043
13108
|
"parameters": [
|
|
@@ -13074,7 +13139,7 @@
|
|
|
13074
13139
|
},
|
|
13075
13140
|
"locationInModule": {
|
|
13076
13141
|
"filename": "src/image-builders/components.ts",
|
|
13077
|
-
"line":
|
|
13142
|
+
"line": 260
|
|
13078
13143
|
},
|
|
13079
13144
|
"name": "git",
|
|
13080
13145
|
"returns": {
|
|
@@ -13091,7 +13156,7 @@
|
|
|
13091
13156
|
},
|
|
13092
13157
|
"locationInModule": {
|
|
13093
13158
|
"filename": "src/image-builders/components.ts",
|
|
13094
|
-
"line":
|
|
13159
|
+
"line": 217
|
|
13095
13160
|
},
|
|
13096
13161
|
"name": "githubCli",
|
|
13097
13162
|
"returns": {
|
|
@@ -13109,7 +13174,7 @@
|
|
|
13109
13174
|
},
|
|
13110
13175
|
"locationInModule": {
|
|
13111
13176
|
"filename": "src/image-builders/components.ts",
|
|
13112
|
-
"line":
|
|
13177
|
+
"line": 304
|
|
13113
13178
|
},
|
|
13114
13179
|
"name": "githubRunner",
|
|
13115
13180
|
"parameters": [
|
|
@@ -13138,7 +13203,7 @@
|
|
|
13138
13203
|
},
|
|
13139
13204
|
"locationInModule": {
|
|
13140
13205
|
"filename": "src/image-builders/components.ts",
|
|
13141
|
-
"line":
|
|
13206
|
+
"line": 537
|
|
13142
13207
|
},
|
|
13143
13208
|
"name": "lambdaEntrypoint",
|
|
13144
13209
|
"returns": {
|
|
@@ -13172,7 +13237,7 @@
|
|
|
13172
13237
|
},
|
|
13173
13238
|
"locationInModule": {
|
|
13174
13239
|
"filename": "src/image-builders/components.ts",
|
|
13175
|
-
"line":
|
|
13240
|
+
"line": 150
|
|
13176
13241
|
},
|
|
13177
13242
|
"name": "runnerUser",
|
|
13178
13243
|
"returns": {
|
|
@@ -13190,7 +13255,7 @@
|
|
|
13190
13255
|
},
|
|
13191
13256
|
"locationInModule": {
|
|
13192
13257
|
"filename": "src/image-builders/components.ts",
|
|
13193
|
-
"line":
|
|
13258
|
+
"line": 617
|
|
13194
13259
|
},
|
|
13195
13260
|
"name": "getAssets",
|
|
13196
13261
|
"parameters": [
|
|
@@ -13227,7 +13292,7 @@
|
|
|
13227
13292
|
},
|
|
13228
13293
|
"locationInModule": {
|
|
13229
13294
|
"filename": "src/image-builders/components.ts",
|
|
13230
|
-
"line":
|
|
13295
|
+
"line": 612
|
|
13231
13296
|
},
|
|
13232
13297
|
"name": "getCommands",
|
|
13233
13298
|
"parameters": [
|
|
@@ -13263,7 +13328,7 @@
|
|
|
13263
13328
|
},
|
|
13264
13329
|
"locationInModule": {
|
|
13265
13330
|
"filename": "src/image-builders/components.ts",
|
|
13266
|
-
"line":
|
|
13331
|
+
"line": 626
|
|
13267
13332
|
},
|
|
13268
13333
|
"name": "getDockerCommands",
|
|
13269
13334
|
"parameters": [
|
|
@@ -13298,7 +13363,7 @@
|
|
|
13298
13363
|
},
|
|
13299
13364
|
"locationInModule": {
|
|
13300
13365
|
"filename": "src/image-builders/components.ts",
|
|
13301
|
-
"line":
|
|
13366
|
+
"line": 633
|
|
13302
13367
|
},
|
|
13303
13368
|
"name": "shouldReboot",
|
|
13304
13369
|
"parameters": [
|
|
@@ -13334,7 +13399,7 @@
|
|
|
13334
13399
|
"immutable": true,
|
|
13335
13400
|
"locationInModule": {
|
|
13336
13401
|
"filename": "src/image-builders/components.ts",
|
|
13337
|
-
"line":
|
|
13402
|
+
"line": 607
|
|
13338
13403
|
},
|
|
13339
13404
|
"name": "name",
|
|
13340
13405
|
"type": {
|
|
@@ -14310,6 +14375,6 @@
|
|
|
14310
14375
|
"symbolId": "src/image-builders/aws-image-builder/deprecated/windows-components:WindowsComponents"
|
|
14311
14376
|
}
|
|
14312
14377
|
},
|
|
14313
|
-
"version": "0.14.
|
|
14314
|
-
"fingerprint": "
|
|
14378
|
+
"version": "0.14.14",
|
|
14379
|
+
"fingerprint": "8IRIjcZz9Js5CoP0LWKQwFTPGgQXtPhvQc4KDOq6psM="
|
|
14315
14380
|
}
|