From dd78dbf69a8d2535ac6e4d618e21fc76d73a0429 Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Thu, 29 Aug 2024 09:30:47 -0700 Subject: [PATCH] Allow resource version to be an int (#3637) * Allow resource version to be an int --- .../data/schemas/other/resources/configuration.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/cfnlint/data/schemas/other/resources/configuration.json b/src/cfnlint/data/schemas/other/resources/configuration.json index 1de0385daf..d87fcdb524 100644 --- a/src/cfnlint/data/schemas/other/resources/configuration.json +++ b/src/cfnlint/data/schemas/other/resources/configuration.json @@ -50,7 +50,10 @@ "UpdatePolicy": {}, "UpdateReplacePolicy": {}, "Version": { - "type": "string" + "type": [ + "string", + "integer" + ] } }, "required": [ @@ -61,7 +64,10 @@ "CreationPolicy": false, "UpdatePolicy": false, "Version": { - "type": "string" + "type": [ + "string", + "integer" + ] } } },