Skip to content

Commit

Permalink
Allow resource version to be an int (#3637)
Browse files Browse the repository at this point in the history
* Allow resource version to be an int
  • Loading branch information
kddejong authored Aug 29, 2024
1 parent 1a1447b commit dd78dbf
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/cfnlint/data/schemas/other/resources/configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@
"UpdatePolicy": {},
"UpdateReplacePolicy": {},
"Version": {
"type": "string"
"type": [
"string",
"integer"
]
}
},
"required": [
Expand All @@ -61,7 +64,10 @@
"CreationPolicy": false,
"UpdatePolicy": false,
"Version": {
"type": "string"
"type": [
"string",
"integer"
]
}
}
},
Expand Down

0 comments on commit dd78dbf

Please sign in to comment.