Skip to content

Commit edbea52

Browse files
authored
Add AutoRetryLimit for AWS::CodeBuild::Project (#3809)
1 parent ed90a44 commit edbea52

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[
2+
{
3+
"op": "add",
4+
"path": "/properties/AutoRetryLimit",
5+
"value": {
6+
"type": "number"
7+
}
8+
}
9+
]

src/cfnlint/data/schemas/providers/us_east_1/aws-codebuild-project.json

+3
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,9 @@
496496
"Artifacts": {
497497
"$ref": "#/definitions/Artifacts"
498498
},
499+
"AutoRetryLimit": {
500+
"type": "number"
501+
},
499502
"BadgeEnabled": {
500503
"type": "boolean"
501504
},

src/cfnlint/data/schemas/providers/us_gov_east_1/aws-codebuild-project.json

+3
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,9 @@
481481
"Artifacts": {
482482
"$ref": "#/definitions/Artifacts"
483483
},
484+
"AutoRetryLimit": {
485+
"type": "number"
486+
},
484487
"BadgeEnabled": {
485488
"type": "boolean"
486489
},

src/cfnlint/data/schemas/providers/us_gov_west_1/aws-codebuild-project.json

+3
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,9 @@
481481
"Artifacts": {
482482
"$ref": "#/definitions/Artifacts"
483483
},
484+
"AutoRetryLimit": {
485+
"type": "number"
486+
},
484487
"BadgeEnabled": {
485488
"type": "boolean"
486489
},

0 commit comments

Comments
 (0)