Skip to content

Commit dd78dbf

Browse files
authored
Allow resource version to be an int (#3637)
* Allow resource version to be an int
1 parent 1a1447b commit dd78dbf

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/cfnlint/data/schemas/other/resources/configuration.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@
5050
"UpdatePolicy": {},
5151
"UpdateReplacePolicy": {},
5252
"Version": {
53-
"type": "string"
53+
"type": [
54+
"string",
55+
"integer"
56+
]
5457
}
5558
},
5659
"required": [
@@ -61,7 +64,10 @@
6164
"CreationPolicy": false,
6265
"UpdatePolicy": false,
6366
"Version": {
64-
"type": "string"
67+
"type": [
68+
"string",
69+
"integer"
70+
]
6571
}
6672
}
6773
},

0 commit comments

Comments
 (0)