From d0b435af67c197b2e46942f43966b9ef5395b7a6 Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Thu, 29 Aug 2024 08:52:51 -0700 Subject: [PATCH] Allow resource version to be an int --- src/cfnlint/data/schemas/other/resources/configuration.json | 4 ++-- 1 file changed, 2 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..c831886005 100644 --- a/src/cfnlint/data/schemas/other/resources/configuration.json +++ b/src/cfnlint/data/schemas/other/resources/configuration.json @@ -50,7 +50,7 @@ "UpdatePolicy": {}, "UpdateReplacePolicy": {}, "Version": { - "type": "string" + "type": ["string", "integer"] } }, "required": [ @@ -61,7 +61,7 @@ "CreationPolicy": false, "UpdatePolicy": false, "Version": { - "type": "string" + "type": ["string", "integer"] } } },