From ea89089a53e81297c639bb7ff22fdaefdfbb900e Mon Sep 17 00:00:00 2001 From: Satyaki Ghosh Date: Wed, 26 Aug 2026 14:28:13 -0600 Subject: [PATCH] Fix version to 1.9 --- src/Cargo.lock | 30 +++--- src/Cargo.toml | 2 +- src/bindings-go/tests/smoke_test.go | 16 +-- .../tests/kotlin/src/test/kotlin/SmokeTest.kt | 30 ++---- src/bindings-python/tests/smoke_test.py | 29 ++--- src/bindings-wasm/tests/smoke.test.ts | 31 ++---- src/cfn-validate/tests/snapshot_tests.rs | 15 ++- .../examples/generate_validation_reports.rs | 2 +- .../expected/validation_reports1.json | 100 ------------------ .../expected/validation_reports2.json | 100 ------------------ .../expected/validation_reports3.json | 100 ------------------ .../expected/validation_reports4.json | 100 ------------------ .../expected/validation_reports5.json | 100 ------------------ .../expected/validation_reports6.json | 100 ------------------ .../expected/validation_reports7.json | 90 ---------------- src/resources/expected/version.txt | 1 + 16 files changed, 63 insertions(+), 783 deletions(-) create mode 100644 src/resources/expected/version.txt diff --git a/src/Cargo.lock b/src/Cargo.lock index 052aa7fc..e1b1763d 100644 --- a/src/Cargo.lock +++ b/src/Cargo.lock @@ -238,7 +238,7 @@ checksum = "4372b9543397a4b86050cc5e7ee36953edf4bac9518e8a774c2da694977fb6e4" [[package]] name = "bindings-go" -version = "1.10.0" +version = "1.9.0" dependencies = [ "cel-engine", "data-source", @@ -256,7 +256,7 @@ dependencies = [ [[package]] name = "bindings-jvm" -version = "1.10.0" +version = "1.9.0" dependencies = [ "cel-engine", "data-source", @@ -272,7 +272,7 @@ dependencies = [ [[package]] name = "bindings-python" -version = "1.10.0" +version = "1.9.0" dependencies = [ "cel-engine", "data-source", @@ -288,7 +288,7 @@ dependencies = [ [[package]] name = "bindings-wasm" -version = "1.10.0" +version = "1.9.0" dependencies = [ "cel-engine", "console_error_panic_hook", @@ -450,7 +450,7 @@ dependencies = [ [[package]] name = "cel-engine" -version = "1.10.0" +version = "1.9.0" dependencies = [ "anyhow", "cel-interpreter", @@ -504,7 +504,7 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "cfn-validate" -version = "1.10.0" +version = "1.9.0" dependencies = [ "cel-engine", "chrono", @@ -668,7 +668,7 @@ dependencies = [ [[package]] name = "data-source" -version = "1.10.0" +version = "1.9.0" dependencies = [ "anyhow", "chrono", @@ -720,7 +720,7 @@ dependencies = [ [[package]] name = "diagnostics" -version = "1.10.0" +version = "1.9.0" dependencies = [ "log", "rules", @@ -987,7 +987,7 @@ dependencies = [ [[package]] name = "guard-translator" -version = "1.10.0" +version = "1.9.0" dependencies = [ "guard-lang", "indexmap 2.14.0", @@ -1530,7 +1530,7 @@ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" [[package]] name = "rego-engine" -version = "1.10.0" +version = "1.9.0" dependencies = [ "anyhow", "data-source", @@ -1570,7 +1570,7 @@ dependencies = [ [[package]] name = "resources" -version = "1.10.0" +version = "1.9.0" dependencies = [ "serde_json", ] @@ -1591,7 +1591,7 @@ dependencies = [ [[package]] name = "rules" -version = "1.10.0" +version = "1.9.0" dependencies = [ "log", "regex", @@ -1686,7 +1686,7 @@ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" [[package]] name = "schema-validator" -version = "1.10.0" +version = "1.9.0" dependencies = [ "data-source", "diagnostics", @@ -1943,7 +1943,7 @@ dependencies = [ [[package]] name = "template-model" -version = "1.10.0" +version = "1.9.0" dependencies = [ "base64", "env_logger", @@ -2432,7 +2432,7 @@ dependencies = [ [[package]] name = "validation-engine" -version = "1.10.0" +version = "1.9.0" dependencies = [ "data-source", "diagnostics", diff --git a/src/Cargo.toml b/src/Cargo.toml index 776e0447..1f23e88d 100644 --- a/src/Cargo.toml +++ b/src/Cargo.toml @@ -22,7 +22,7 @@ resolver = "2" name = "cloudformation-validate" [workspace.package] -version = "1.10.0" +version = "1.9.0" edition = "2024" license = "Apache-2.0" description = "AWS CloudFormation Validate" diff --git a/src/bindings-go/tests/smoke_test.go b/src/bindings-go/tests/smoke_test.go index bba97c13..ef0926f4 100644 --- a/src/bindings-go/tests/smoke_test.go +++ b/src/bindings-go/tests/smoke_test.go @@ -11,7 +11,6 @@ import ( "fmt" "os" "path/filepath" - "regexp" "sort" "strings" "testing" @@ -94,16 +93,17 @@ func diagnosticKeys(report *cfnvalidate.StandardReport) []string { return keys } -func TestVersionMatchesWorkspaceCargoToml(t *testing.T) { - content, err := os.ReadFile(filepath.Join(workspaceDir, "Cargo.toml")) +func TestVersionMatchesExpectedVersionFixture(t *testing.T) { + expectedVersionPath := filepath.Join(workspaceDir, "resources", "expected", "version.txt") + content, err := os.ReadFile(expectedVersionPath) if err != nil { - t.Fatalf("reading workspace Cargo.toml: %v", err) + t.Fatalf("reading expected version fixture: %v", err) } - match := regexp.MustCompile(`(?s)\[workspace\.package\].*?version = "([^"]+)"`).FindSubmatch(content) - if match == nil { - t.Fatal("missing version under [workspace.package] in workspace Cargo.toml") + expectedVersion := strings.TrimSpace(string(content)) + if expectedVersion == "" { + t.Fatalf("%s must not be empty", expectedVersionPath) } - if got, want := cfnvalidate.Version(), string(match[1]); got != want { + if got, want := cfnvalidate.Version(), expectedVersion; got != want { t.Errorf("Version() = %q, want %q", got, want) } } diff --git a/src/bindings-jvm/tests/kotlin/src/test/kotlin/SmokeTest.kt b/src/bindings-jvm/tests/kotlin/src/test/kotlin/SmokeTest.kt index 7ce5cfb9..d0365736 100644 --- a/src/bindings-jvm/tests/kotlin/src/test/kotlin/SmokeTest.kt +++ b/src/bindings-jvm/tests/kotlin/src/test/kotlin/SmokeTest.kt @@ -61,32 +61,16 @@ class SmokeTest { // ── version ────────────────────────────────────────────────────────────── - private fun readWorkspaceVersion(): String { - val cargoToml = File(resourcesRoot.parentFile, "Cargo.toml") - var inWorkspacePackage = false - for (line in cargoToml.readLines()) { - val trimmed = line.trim() - if (trimmed == "[workspace.package]") { - inWorkspacePackage = true - continue - } - if (inWorkspacePackage && trimmed.startsWith("[")) { - break - } - if (inWorkspacePackage && trimmed.startsWith("version = ")) { - val value = trimmed.removePrefix("version = ").trim() - require(value.startsWith("\"") && value.endsWith("\"")) { - "malformed version line in ${cargoToml.path}: $line" - } - return value.substring(1, value.length - 1) - } - } - error("missing 'version = ' under [workspace.package] in ${cargoToml.path}") + private fun readExpectedVersion(): String { + val expectedVersionFile = File(expectedDir, "version.txt") + val expectedVersion = expectedVersionFile.readText().trim() + require(expectedVersion.isNotEmpty()) { "${expectedVersionFile.path} must not be empty" } + return expectedVersion } @Test - fun versionReturnsCrateVersionFromWorkspaceCargoToml() { - assertEquals(readWorkspaceVersion(), version()) + fun versionReturnsExpectedVersionFixture() { + assertEquals(readExpectedVersion(), version()) } // ── Engine construction ────────────────────────────────────────────────── diff --git a/src/bindings-python/tests/smoke_test.py b/src/bindings-python/tests/smoke_test.py index 058a60e7..6120cf99 100644 --- a/src/bindings-python/tests/smoke_test.py +++ b/src/bindings-python/tests/smoke_test.py @@ -7,7 +7,6 @@ """ import os -import re import tempfile import unittest from unittest import mock @@ -68,23 +67,13 @@ }""" -def read_workspace_version(): - cargo_toml = os.path.join(WORKSPACE, "Cargo.toml") - in_workspace_package = False - with open(cargo_toml, encoding="utf-8") as f: - for line in f: - stripped = line.strip() - if stripped == "[workspace.package]": - in_workspace_package = True - continue - if in_workspace_package and stripped.startswith("["): - break - if in_workspace_package and stripped.startswith("version = "): - match = re.fullmatch(r'version = "([^"]+)"', stripped) - if not match: - raise AssertionError(f"malformed version line in {cargo_toml}: {line}") - return match.group(1) - raise AssertionError(f"missing 'version = ' under [workspace.package] in {cargo_toml}") +def read_expected_version(): + expected_version_path = os.path.join(RESOURCES, "expected", "version.txt") + with open(expected_version_path, encoding="utf-8") as f: + expected_version = f.read().strip() + if not expected_version: + raise AssertionError(f"{expected_version_path} must not be empty") + return expected_version def load_rule(filename): @@ -102,8 +91,8 @@ def diagnostic_keys(report): class VersionTest(unittest.TestCase): - def test_version_matches_workspace_cargo_toml(self): - self.assertEqual(read_workspace_version(), version()) + def test_version_matches_expected_version_fixture(self): + self.assertEqual(read_expected_version(), version()) class EngineConstructionTest(unittest.TestCase): diff --git a/src/bindings-wasm/tests/smoke.test.ts b/src/bindings-wasm/tests/smoke.test.ts index c2d5439f..d4b7cf38 100644 --- a/src/bindings-wasm/tests/smoke.test.ts +++ b/src/bindings-wasm/tests/smoke.test.ts @@ -144,33 +144,18 @@ function stripSnapshotExcludedFields(report: any, filePath?: string): unknown { // ── version ────────────────────────────────────────────────────────────────── -function readWorkspaceVersion(): string { - const cargoTomlPath = path.resolve(__dirname, '../../Cargo.toml'); - const lines = fs.readFileSync(cargoTomlPath, 'utf-8').split('\n'); - let inWorkspacePackage = false; - for (const line of lines) { - const trimmed = line.trim(); - if (trimmed === '[workspace.package]') { - inWorkspacePackage = true; - continue; - } - if (inWorkspacePackage && trimmed.startsWith('[')) { - break; - } - if (inWorkspacePackage && trimmed.startsWith('version = ')) { - const value = trimmed.slice('version = '.length).trim(); - if (!value.startsWith('"') || !value.endsWith('"')) { - throw new Error(`malformed version line in ${cargoTomlPath}: ${line}`); - } - return value.slice(1, -1); - } +function readExpectedVersion(): string { + const expectedVersionPath = path.join(EXPECTED_DIR, 'version.txt'); + const expectedVersion = fs.readFileSync(expectedVersionPath, 'utf-8').trim(); + if (expectedVersion.length === 0) { + throw new Error(`${expectedVersionPath} must not be empty`); } - throw new Error(`missing 'version = ' under [workspace.package] in ${cargoTomlPath}`); + return expectedVersion; } describe('version', () => { - it('returns the crate version from workspace Cargo.toml', () => { - expect(version()).toBe(readWorkspaceVersion()); + it('returns the expected version fixture', () => { + expect(version()).toBe(readExpectedVersion()); }); }); diff --git a/src/cfn-validate/tests/snapshot_tests.rs b/src/cfn-validate/tests/snapshot_tests.rs index 291d1d77..c64facda 100644 --- a/src/cfn-validate/tests/snapshot_tests.rs +++ b/src/cfn-validate/tests/snapshot_tests.rs @@ -226,7 +226,13 @@ fn report_metadata_contains_embedded_source_versions_on_all_outcomes() { } #[test] -fn engine_version_matches_workspace_version() { +fn engine_version_matches_expected_version_fixture() { + let expected_version_path = resources::expected_dir().join("version.txt"); + let expected_version_text = std::fs::read_to_string(&expected_version_path) + .unwrap_or_else(|error| panic!("read {}: {error}", expected_version_path.display())); + let expected_version = expected_version_text.trim(); + assert!(!expected_version.is_empty(), "{} must not be empty", expected_version_path.display()); + let rego = RegoEngine::new(EngineConfig::default()).expect("rego engine"); let cel = CelEngine::new(EngineConfig::default()).expect("cel engine"); let bytes = load_template("good/generic.yaml"); @@ -235,7 +241,12 @@ fn engine_version_matches_workspace_version() { ("rego", validate_to_json(®o, &bytes, "good/generic.yaml", DetailLevel::Detailed)), ("cel", validate_to_json(&cel, &bytes, "good/generic.yaml", DetailLevel::Detailed)), ] { - assert_eq!(report["version"].as_str(), Some("1.10.0"), "{name}: version must be the workspace crate version"); + assert_eq!( + report["version"].as_str(), + Some(expected_version), + "{name}: version must match {}", + expected_version_path.display() + ); } } diff --git a/src/resources/examples/generate_validation_reports.rs b/src/resources/examples/generate_validation_reports.rs index 09707df1..e6c9cb80 100644 --- a/src/resources/examples/generate_validation_reports.rs +++ b/src/resources/examples/generate_validation_reports.rs @@ -37,7 +37,7 @@ const ENGINES: &[&str] = &["rego", "cel"]; const PARITY_IGNORED_FIELDS: &[&str] = &["performance", "benchmarkMetrics", "suppressed"]; /// Top-level fields compared across engines but not persisted to the snapshot chunks. -const OUTPUT_ONLY_TOP_LEVEL_FIELDS: &[&str] = &["performance"]; +const OUTPUT_ONLY_TOP_LEVEL_FIELDS: &[&str] = &["performance", "version"]; /// `metadata` fields compared across engines but not persisted to the snapshot chunks because they describe /// the current binary's rule and data-source bundle. diff --git a/src/resources/expected/validation_reports1.json b/src/resources/expected/validation_reports1.json index 51dc27f7..d3bb1332 100644 --- a/src/resources/expected/validation_reports1.json +++ b/src/resources/expected/validation_reports1.json @@ -2,7 +2,6 @@ "bad/E1050_dynamic_ref_malformed.yaml": { "filePath": "bad/E1050_dynamic_ref_malformed.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -83,7 +82,6 @@ "bad/E1150_network_interfaces_groupset_multi.yaml": { "filePath": "bad/E1150_network_interfaces_groupset_multi.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -266,7 +264,6 @@ "bad/E2530_I2530_snapstart_sourced_tables.yaml": { "filePath": "bad/E2530_I2530_snapstart_sourced_tables.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -513,7 +510,6 @@ "bad/E3019_four_way_group.yaml": { "filePath": "bad/E3019_four_way_group.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -777,7 +773,6 @@ "bad/E3019_identity_reference_forms.yaml": { "filePath": "bad/E3019_identity_reference_forms.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 6, "counts": { @@ -1222,7 +1217,6 @@ "bad/E3022_equivalent_subnet_forms.yaml": { "filePath": "bad/E3022_equivalent_subnet_forms.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -1553,7 +1547,6 @@ "bad/E3023_conditional_record_items.yaml": { "filePath": "bad/E3023_conditional_record_items.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -1677,7 +1670,6 @@ "bad/E3512_opensearch_access_policy.yaml": { "filePath": "bad/E3512_opensearch_access_policy.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1773,7 +1765,6 @@ "bad/E3663_reserved_environment_keys.yaml": { "filePath": "bad/E3663_reserved_environment_keys.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1831,7 +1822,6 @@ "bad/E3679_classic_elb_listener_index.yaml": { "filePath": "bad/E3679_classic_elb_listener_index.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1970,7 +1960,6 @@ "bad/E3699_authorizer_literal_and_param_rest_api.yaml": { "filePath": "bad/E3699_authorizer_literal_and_param_rest_api.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -2237,7 +2226,6 @@ "bad/E3699_method_authorizer_rest_api_mismatch.yaml": { "filePath": "bad/E3699_method_authorizer_rest_api_mismatch.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -2411,7 +2399,6 @@ "bad/E8007_condition_undefined_in_expr.yaml": { "filePath": "bad/E8007_condition_undefined_in_expr.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -2464,7 +2451,6 @@ "bad/E9001_unknown_resource_type.yaml": { "filePath": "bad/E9001_unknown_resource_type.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -2507,7 +2493,6 @@ "bad/E9106_condition_cycle.yaml": { "filePath": "bad/E9106_condition_cycle.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -2560,7 +2545,6 @@ "bad/F2002_ssm_parameter_type_invalid.yaml": { "filePath": "bad/F2002_ssm_parameter_type_invalid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -2641,7 +2625,6 @@ "bad/F2002_unsupported_ssm_parameter_type.yaml": { "filePath": "bad/F2002_unsupported_ssm_parameter_type.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -2710,7 +2693,6 @@ "bad/F3006_invalid_aws_namespaces.yaml": { "filePath": "bad/F3006_invalid_aws_namespaces.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -2854,7 +2836,6 @@ "bad/F3018_conditional_required_novalue.yaml": { "filePath": "bad/F3018_conditional_required_novalue.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -3000,7 +2981,6 @@ "bad/F3031_log_group_name_dollar_brace.yaml": { "filePath": "bad/F3031_log_group_name_dollar_brace.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -3110,7 +3090,6 @@ "bad/I3100_previous_generation_sourced_routes.yaml": { "filePath": "bad/I3100_previous_generation_sourced_routes.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -3409,7 +3388,6 @@ "bad/I9001_conditional_create_only.yaml": { "filePath": "bad/I9001_conditional_create_only.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -3495,7 +3473,6 @@ "bad/W1019_sub_unused_key.yaml": { "filePath": "bad/W1019_sub_unused_key.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -3577,7 +3554,6 @@ "bad/W1028_allowedvalues_excludes_literal.yaml": { "filePath": "bad/W1028_allowedvalues_excludes_literal.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -3640,7 +3616,6 @@ "bad/W1051_secretsmanager_at_arn.yaml": { "filePath": "bad/W1051_secretsmanager_at_arn.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -3700,7 +3675,6 @@ "bad/W1053_dynref_spaces.yaml": { "filePath": "bad/W1053_dynref_spaces.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -3782,7 +3756,6 @@ "bad/W1054_raw_pseudo_param.yaml": { "filePath": "bad/W1054_raw_pseudo_param.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -3904,7 +3877,6 @@ "bad/W2501_nested_password_W1011_exact_path.yaml": { "filePath": "bad/W2501_nested_password_W1011_exact_path.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -4004,7 +3976,6 @@ "bad/W3010_full_coverage.yaml": { "filePath": "bad/W3010_full_coverage.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 9, "counts": { @@ -4851,7 +4822,6 @@ "bad/W3030_enum_case_insensitive_mismatch.yaml": { "filePath": "bad/W3030_enum_case_insensitive_mismatch.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4943,7 +4913,6 @@ "bad/W3660_api_gateway_body_mixing.yaml": { "filePath": "bad/W3660_api_gateway_body_mixing.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -5379,7 +5348,6 @@ "bad/W3671_spotfleet_ebs_iops.yaml": { "filePath": "bad/W3671_spotfleet_ebs_iops.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5482,7 +5450,6 @@ "bad/W9006_every_allowed_value_too_long.json": { "filePath": "bad/W9006_every_allowed_value_too_long.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5570,7 +5537,6 @@ "bad/W9007_duplicate_objects_different_key_order.yaml": { "filePath": "bad/W9007_duplicate_objects_different_key_order.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5707,7 +5673,6 @@ "bad/W9053_equivalent_conditions.yaml": { "filePath": "bad/W9053_equivalent_conditions.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5778,7 +5743,6 @@ "bad/aurora_with_allocated_storage.yaml": { "filePath": "bad/aurora_with_allocated_storage.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5929,7 +5893,6 @@ "bad/cloudfront_bad_alias.yaml": { "filePath": "bad/cloudfront_bad_alias.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5988,7 +5951,6 @@ "bad/cloudfront_bad_origin.yaml": { "filePath": "bad/cloudfront_bad_origin.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -6048,7 +6010,6 @@ "bad/codepipeline_bad_artifact_counts.yaml": { "filePath": "bad/codepipeline_bad_artifact_counts.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -6145,7 +6106,6 @@ "bad/codepipeline_bad_artifacts.yaml": { "filePath": "bad/codepipeline_bad_artifacts.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -6260,7 +6220,6 @@ "bad/conditions.yaml": { "filePath": "bad/conditions.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -6999,7 +6958,6 @@ "bad/conditions/and.yaml": { "filePath": "bad/conditions/and.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -7261,7 +7219,6 @@ "bad/conditions/condition_functions.json": { "filePath": "bad/conditions/condition_functions.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -7859,7 +7816,6 @@ "bad/conditions/equals.yaml": { "filePath": "bad/conditions/equals.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -8180,7 +8136,6 @@ "bad/conditions/equals_not_useful.yaml": { "filePath": "bad/conditions/equals_not_useful.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -8321,7 +8276,6 @@ "bad/conditions/properties_fn_if.json": { "filePath": "bad/conditions/properties_fn_if.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -8441,7 +8395,6 @@ "bad/core/E3001_resource_shape.yaml": { "filePath": "bad/core/E3001_resource_shape.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -8793,7 +8746,6 @@ "bad/core/conditions.yaml": { "filePath": "bad/core/conditions.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -9598,7 +9550,6 @@ "bad/core/conditions_list.yaml": { "filePath": "bad/core/conditions_list.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -9645,7 +9596,6 @@ "bad/core/conditions_missing.yaml": { "filePath": "bad/core/conditions_missing.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -9709,7 +9659,6 @@ "bad/core/config_configure_e3012.yaml": { "filePath": "bad/core/config_configure_e3012.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -9812,7 +9761,6 @@ "bad/core/config_invalid_json.json": { "filePath": "bad/core/config_invalid_json.json", "status": "ERROR", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -9845,7 +9793,6 @@ "bad/core/config_invalid_yaml.yaml": { "filePath": "bad/core/config_invalid_yaml.yaml", "status": "ERROR", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -9878,7 +9825,6 @@ "bad/core/config_parameters.yaml": { "filePath": "bad/core/config_parameters.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -9911,7 +9857,6 @@ "bad/core/directives.yaml": { "filePath": "bad/core/directives.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -10327,7 +10272,6 @@ "bad/core/mandatory_checks.yaml": { "filePath": "bad/core/mandatory_checks.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -10743,7 +10687,6 @@ "bad/core/parse_invalid_map.yaml": { "filePath": "bad/core/parse_invalid_map.yaml", "status": "ERROR", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -10776,7 +10719,6 @@ "bad/core/parse_malformed_core_tag.yaml": { "filePath": "bad/core/parse_malformed_core_tag.yaml", "status": "ERROR", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -10809,7 +10751,6 @@ "bad/core/parse_multiple_documents.yaml": { "filePath": "bad/core/parse_multiple_documents.yaml", "status": "ERROR", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -10842,7 +10783,6 @@ "bad/core/parse_null_key.yaml": { "filePath": "bad/core/parse_null_key.yaml", "status": "ERROR", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -10875,7 +10815,6 @@ "bad/core/resource_attributes.yaml": { "filePath": "bad/core/resource_attributes.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -11296,7 +11235,6 @@ "bad/core/sections_not_objects.yaml": { "filePath": "bad/core/sections_not_objects.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -11358,7 +11296,6 @@ "bad/cross_resource_task10.yaml": { "filePath": "bad/cross_resource_task10.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 11, "counts": { @@ -12206,7 +12143,6 @@ "bad/deprecated_type.yaml": { "filePath": "bad/deprecated_type.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12284,7 +12220,6 @@ "bad/duplicate.json": { "filePath": "bad/duplicate.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -12424,7 +12359,6 @@ "bad/duplicate.yaml": { "filePath": "bad/duplicate.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -12559,7 +12493,6 @@ "bad/duplicate_primary_id.yaml": { "filePath": "bad/duplicate_primary_id.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -12701,7 +12634,6 @@ "bad/duplicate_primary_id_multi.yaml": { "filePath": "bad/duplicate_primary_id_multi.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -12807,7 +12739,6 @@ "bad/dynamodb_attribute_mismatch.yaml": { "filePath": "bad/dynamodb_attribute_mismatch.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12946,7 +12877,6 @@ "bad/dynamodb_prod_no_kms.yaml": { "filePath": "bad/dynamodb_prod_no_kms.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -13028,7 +12958,6 @@ "bad/dynamodb_provisioned_no_throughput.yaml": { "filePath": "bad/dynamodb_provisioned_no_throughput.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -13188,7 +13117,6 @@ "bad/ecr_policy_no_statement.yaml": { "filePath": "bad/ecr_policy_no_statement.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -13248,7 +13176,6 @@ "bad/ecs_awsvpc_port_mismatch.yaml": { "filePath": "bad/ecs_awsvpc_port_mismatch.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -13354,7 +13281,6 @@ "bad/ecs_dynamic_port_no_traffic.yaml": { "filePath": "bad/ecs_dynamic_port_no_traffic.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -13579,7 +13505,6 @@ "bad/ecs_fargate_mismatch.yaml": { "filePath": "bad/ecs_fargate_mismatch.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -13798,7 +13723,6 @@ "bad/ecs_role_no_boundary.yaml": { "filePath": "bad/ecs_role_no_boundary.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -13949,7 +13873,6 @@ "bad/elb_http_443.yaml": { "filePath": "bad/elb_http_443.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -14049,7 +13972,6 @@ "bad/empty_file.yaml": { "filePath": "bad/empty_file.yaml", "status": "ERROR", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -14082,7 +14004,6 @@ "bad/equals_wrong_arity.yaml": { "filePath": "bad/equals_wrong_arity.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -14158,7 +14079,6 @@ "bad/fargate_bad_cpu_memory.yaml": { "filePath": "bad/fargate_bad_cpu_memory.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -14362,7 +14282,6 @@ "bad/fargate_daemon.yaml": { "filePath": "bad/fargate_daemon.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -14691,7 +14610,6 @@ "bad/findinmap_bad.yaml": { "filePath": "bad/findinmap_bad.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -14751,7 +14669,6 @@ "bad/formatters.yaml": { "filePath": "bad/formatters.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -14909,7 +14826,6 @@ "bad/functions/findinmap_default_value_no_transform.yaml": { "filePath": "bad/functions/findinmap_default_value_no_transform.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -14968,7 +14884,6 @@ "bad/functions/foreach_no_transform.yaml": { "filePath": "bad/functions/foreach_no_transform.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -15060,7 +14975,6 @@ "bad/functions/get_stack_output.json": { "filePath": "bad/functions/get_stack_output.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -15236,7 +15150,6 @@ "bad/functions/get_stack_output.yaml": { "filePath": "bad/functions/get_stack_output.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -15487,7 +15400,6 @@ "bad/functions/import_value.yaml": { "filePath": "bad/functions/import_value.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -15609,7 +15521,6 @@ "bad/functions/length_no_transform.yaml": { "filePath": "bad/functions/length_no_transform.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -15723,7 +15634,6 @@ "bad/functions/relationship_conditions.yaml": { "filePath": "bad/functions/relationship_conditions.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -16026,7 +15936,6 @@ "bad/functions/sub_needed.yaml": { "filePath": "bad/functions/sub_needed.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -16509,7 +16418,6 @@ "bad/functions/tojsonstring_no_transform.yaml": { "filePath": "bad/functions/tojsonstring_no_transform.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -16605,7 +16513,6 @@ "bad/functions_base64.yaml": { "filePath": "bad/functions_base64.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -16769,7 +16676,6 @@ "bad/functions_findinmap_enhanced_invalid_key.yaml": { "filePath": "bad/functions_findinmap_enhanced_invalid_key.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -16849,7 +16755,6 @@ "bad/functions_getaz.yaml": { "filePath": "bad/functions_getaz.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -17323,7 +17228,6 @@ "bad/functions_join.yaml": { "filePath": "bad/functions_join.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -17523,7 +17427,6 @@ "bad/functions_ref.yaml": { "filePath": "bad/functions_ref.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -18341,7 +18244,6 @@ "bad/functions_select.yaml": { "filePath": "bad/functions_select.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -18795,7 +18697,6 @@ "bad/generic.yaml": { "filePath": "bad/generic.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 19, "counts": { @@ -20541,7 +20442,6 @@ "bad/getatt_object_attribute_member.yaml": { "filePath": "bad/getatt_object_attribute_member.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { diff --git a/src/resources/expected/validation_reports2.json b/src/resources/expected/validation_reports2.json index f7326e89..55785069 100644 --- a/src/resources/expected/validation_reports2.json +++ b/src/resources/expected/validation_reports2.json @@ -2,7 +2,6 @@ "bad/hard_coded_arn_properties.yaml": { "filePath": "bad/hard_coded_arn_properties.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 6, "counts": { @@ -188,7 +187,6 @@ "bad/hardcoded_partition.yaml": { "filePath": "bad/hardcoded_partition.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -370,7 +368,6 @@ "bad/iam_bad_statement.yaml": { "filePath": "bad/iam_bad_statement.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -409,7 +406,6 @@ "bad/iam_ref_with_path.yaml": { "filePath": "bad/iam_ref_with_path.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -512,7 +508,6 @@ "bad/iam_wildcard_all_types.yaml": { "filePath": "bad/iam_wildcard_all_types.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -590,7 +585,6 @@ "bad/if_wrong_arity.yaml": { "filePath": "bad/if_wrong_arity.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -689,7 +683,6 @@ "bad/invalid_deletion_policy.yaml": { "filePath": "bad/invalid_deletion_policy.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -766,7 +759,6 @@ "bad/invalid_mapping_structure.yaml": { "filePath": "bad/invalid_mapping_structure.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -842,7 +834,6 @@ "bad/invalid_update_replace_policy.yaml": { "filePath": "bad/invalid_update_replace_policy.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -919,7 +910,6 @@ "bad/issues.yaml": { "filePath": "bad/issues.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1049,7 +1039,6 @@ "bad/json_parse.json": { "filePath": "bad/json_parse.json", "status": "ERROR", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -1082,7 +1071,6 @@ "bad/lambda_image_handler_intrinsic.yaml": { "filePath": "bad/lambda_image_handler_intrinsic.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1183,7 +1171,6 @@ "bad/lambda_no_snapstart.yaml": { "filePath": "bad/lambda_no_snapstart.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1266,7 +1253,6 @@ "bad/lambda_permission_no_source_account.yaml": { "filePath": "bad/lambda_permission_no_source_account.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1413,7 +1399,6 @@ "bad/lambda_snapstart_bad_runtime.yaml": { "filePath": "bad/lambda_snapstart_bad_runtime.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1513,7 +1498,6 @@ "bad/lambda_snapstart_no_version.yaml": { "filePath": "bad/lambda_snapstart_no_version.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1573,7 +1557,6 @@ "bad/lambda_sqs_timeout.yaml": { "filePath": "bad/lambda_sqs_timeout.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -1756,7 +1739,6 @@ "bad/lambda_zip_no_handler.yaml": { "filePath": "bad/lambda_zip_no_handler.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1838,7 +1820,6 @@ "bad/lambda_zipfile_java.yaml": { "filePath": "bad/lambda_zipfile_java.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1957,7 +1938,6 @@ "bad/lifecycle_conditional_invalid_policies.yaml": { "filePath": "bad/lifecycle_conditional_invalid_policies.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -2378,7 +2358,6 @@ "bad/lifecycle_policy_shapes.yaml": { "filePath": "bad/lifecycle_policy_shapes.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 11, "counts": { @@ -2765,7 +2744,6 @@ "bad/limit_numbers.yaml": { "filePath": "bad/limit_numbers.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 501, "counts": { @@ -20093,7 +20071,6 @@ "bad/limit_size.yaml": { "filePath": "bad/limit_size.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 299, "counts": { @@ -64686,7 +64663,6 @@ "bad/mappings/name.yaml": { "filePath": "bad/mappings/name.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -64755,7 +64731,6 @@ "bad/mappings/used.yaml": { "filePath": "bad/mappings/used.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -64879,7 +64854,6 @@ "bad/module_with_tags.yaml": { "filePath": "bad/module_with_tags.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -64918,7 +64892,6 @@ "bad/modules/bad_has_create_policy.yaml": { "filePath": "bad/modules/bad_has_create_policy.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -64977,7 +64950,6 @@ "bad/modules/bad_has_tags.yaml": { "filePath": "bad/modules/bad_has_tags.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -65016,7 +64988,6 @@ "bad/modules/bad_has_update_policy.yaml": { "filePath": "bad/modules/bad_has_update_policy.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -65075,7 +65046,6 @@ "bad/modules/bad_uses_module_metadata.yaml": { "filePath": "bad/modules/bad_uses_module_metadata.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -65094,7 +65064,6 @@ "bad/noecho.yaml": { "filePath": "bad/noecho.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -65194,7 +65163,6 @@ "bad/not_cloudformation.yaml": { "filePath": "bad/not_cloudformation.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -65237,7 +65205,6 @@ "bad/opensearch_instance_type.yaml": { "filePath": "bad/opensearch_instance_type.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -65397,7 +65364,6 @@ "bad/output_invalid_references.yaml": { "filePath": "bad/output_invalid_references.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -65473,7 +65439,6 @@ "bad/output_invalid_targets.yaml": { "filePath": "bad/output_invalid_targets.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -65599,7 +65564,6 @@ "bad/output_value_not_string.yaml": { "filePath": "bad/output_value_not_string.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -65820,7 +65784,6 @@ "bad/override/complete.yaml": { "filePath": "bad/override/complete.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -66051,7 +66014,6 @@ "bad/override/exclude.yaml": { "filePath": "bad/override/exclude.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -66131,7 +66093,6 @@ "bad/override/include.yaml": { "filePath": "bad/override/include.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -66316,7 +66277,6 @@ "bad/override/required.yaml": { "filePath": "bad/override/required.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -66379,7 +66339,6 @@ "bad/param_constraints.yaml": { "filePath": "bad/param_constraints.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -66599,7 +66558,6 @@ "bad/param_number_default.yaml": { "filePath": "bad/param_number_default.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -66709,7 +66667,6 @@ "bad/parameters/F2012_cdl_default_split.yaml": { "filePath": "bad/parameters/F2012_cdl_default_split.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -66963,7 +66920,6 @@ "bad/parameters/configuration.yaml": { "filePath": "bad/parameters/configuration.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -67615,7 +67571,6 @@ "bad/parameters/default.yaml": { "filePath": "bad/parameters/default.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -68044,7 +67999,6 @@ "bad/pipeline_no_source_first_stage.yaml": { "filePath": "bad/pipeline_no_source_first_stage.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -68210,7 +68164,6 @@ "bad/previous_gen_instance.yaml": { "filePath": "bad/previous_gen_instance.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -68344,7 +68297,6 @@ "bad/previous_generation_instances.yaml": { "filePath": "bad/previous_generation_instances.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 6, "counts": { @@ -68871,7 +68823,6 @@ "bad/properties_ebs.yaml": { "filePath": "bad/properties_ebs.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -69389,7 +69340,6 @@ "bad/properties_password.yaml": { "filePath": "bad/properties_password.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -70030,7 +69980,6 @@ "bad/properties_rt_association.yaml": { "filePath": "bad/properties_rt_association.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -70532,7 +70481,6 @@ "bad/properties_sg_ingress.yaml": { "filePath": "bad/properties_sg_ingress.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 9, "counts": { @@ -71527,7 +71475,6 @@ "bad/rds_dbclusterinstanceclass_invalid.yaml": { "filePath": "bad/rds_dbclusterinstanceclass_invalid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -71778,7 +71725,6 @@ "bad/rds_dbinstanceclass_mixed_case_engine.yaml": { "filePath": "bad/rds_dbinstanceclass_mixed_case_engine.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -71944,7 +71890,6 @@ "bad/rds_public.yaml": { "filePath": "bad/rds_public.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -72159,7 +72104,6 @@ "bad/redshift_internet_accessible.yaml": { "filePath": "bad/redshift_internet_accessible.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -72471,7 +72415,6 @@ "bad/refs.yaml": { "filePath": "bad/refs.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -72985,7 +72928,6 @@ "bad/resource_policy_no_statement.yaml": { "filePath": "bad/resource_policy_no_statement.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -73081,7 +73023,6 @@ "bad/resources/backup/test_backup_plan_lifecycle_rule.yml": { "filePath": "bad/resources/backup/test_backup_plan_lifecycle_rule.yml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -73100,7 +73041,6 @@ "bad/resources/cloudformation/stack_nested.yaml": { "filePath": "bad/resources/cloudformation/stack_nested.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -73169,7 +73109,6 @@ "bad/resources/cloudformation/stacks.yaml": { "filePath": "bad/resources/cloudformation/stacks.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -73339,7 +73278,6 @@ "bad/resources/codepipeline/stages_second_stage.yaml": { "filePath": "bad/resources/codepipeline/stages_second_stage.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -73489,7 +73427,6 @@ "bad/resources/creation_policy_unsupported_e3055.yaml": { "filePath": "bad/resources/creation_policy_unsupported_e3055.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -73571,7 +73508,6 @@ "bad/resources/dynamodb/attributes_transform_e3639.yaml": { "filePath": "bad/resources/dynamodb/attributes_transform_e3639.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -73961,7 +73897,6 @@ "bad/resources/dynamodb/conditional_scenarios.yaml": { "filePath": "bad/resources/dynamodb/conditional_scenarios.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -74251,7 +74186,6 @@ "bad/resources/dynamodb/provisioned_throughput_e3639.yaml": { "filePath": "bad/resources/dynamodb/provisioned_throughput_e3639.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -75043,7 +74977,6 @@ "bad/resources/dynamodb/undefined_attribute_definition.yaml": { "filePath": "bad/resources/dynamodb/undefined_attribute_definition.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -75160,7 +75093,6 @@ "bad/resources/dynamodb/unused_attribute_definition_1.yaml": { "filePath": "bad/resources/dynamodb/unused_attribute_definition_1.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -75277,7 +75209,6 @@ "bad/resources/dynamodb/unused_attribute_definition_2.yaml": { "filePath": "bad/resources/dynamodb/unused_attribute_definition_2.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -75394,7 +75325,6 @@ "bad/resources/ecs/fargate_conditional_properties.yaml": { "filePath": "bad/resources/ecs/fargate_conditional_properties.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -75494,7 +75424,6 @@ "bad/resources/ecs/fargate_properties_e3048.yaml": { "filePath": "bad/resources/ecs/fargate_properties_e3048.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 14, "counts": { @@ -77995,7 +77924,6 @@ "bad/resources/ecs/fargate_task_sizes_e3047.yaml": { "filePath": "bad/resources/ecs/fargate_task_sizes_e3047.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 9, "counts": { @@ -79793,7 +79721,6 @@ "bad/resources/elasticache/cache_cluster_failover.yaml": { "filePath": "bad/resources/elasticache/cache_cluster_failover.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -80427,7 +80354,6 @@ "bad/resources/iam/iam_policy.yaml": { "filePath": "bad/resources/iam/iam_policy.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -80997,7 +80923,6 @@ "bad/resources/iam/iam_policy_conditional_policies.yaml": { "filePath": "bad/resources/iam/iam_policy_conditional_policies.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -81131,7 +81056,6 @@ "bad/resources/iam/identity_policy_conditional_novalue_e3510.yaml": { "filePath": "bad/resources/iam/identity_policy_conditional_novalue_e3510.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -81193,7 +81117,6 @@ "bad/resources/iam/identity_policy_e3510.yaml": { "filePath": "bad/resources/iam/identity_policy_e3510.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -81761,7 +81684,6 @@ "bad/resources/iam/identity_policy_wildcard_service.yaml": { "filePath": "bad/resources/iam/identity_policy_wildcard_service.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -81800,7 +81722,6 @@ "bad/resources/iam/managed_policy_description.yaml": { "filePath": "bad/resources/iam/managed_policy_description.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -81843,7 +81764,6 @@ "bad/resources/iam/ref_with_path.yaml": { "filePath": "bad/resources/iam/ref_with_path.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -82120,7 +82040,6 @@ "bad/resources/iam/resource_policy.yaml": { "filePath": "bad/resources/iam/resource_policy.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -82180,7 +82099,6 @@ "bad/resources/lambda/function_property_value_limits.yaml": { "filePath": "bad/resources/lambda/function_property_value_limits.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -82567,7 +82485,6 @@ "bad/resources/lambda/required_properties.yaml": { "filePath": "bad/resources/lambda/required_properties.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -82826,7 +82743,6 @@ "bad/resources/name.yaml": { "filePath": "bad/resources/name.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -82924,7 +82840,6 @@ "bad/resources/primary_identifiers.yaml": { "filePath": "bad/resources/primary_identifiers.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 13, "counts": { @@ -83697,7 +83612,6 @@ "bad/resources/properties/atleastone.yaml": { "filePath": "bad/resources/properties/atleastone.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -83877,7 +83791,6 @@ "bad/resources/properties/custom.yaml": { "filePath": "bad/resources/properties/custom.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -83896,7 +83809,6 @@ "bad/resources/properties/list_duplicates.yaml": { "filePath": "bad/resources/properties/list_duplicates.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -83945,7 +83857,6 @@ "bad/resources/properties/primitive_types_map.yaml": { "filePath": "bad/resources/properties/primitive_types_map.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -84087,7 +83998,6 @@ "bad/resources/properties/string_size.yaml": { "filePath": "bad/resources/properties/string_size.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -84290,7 +84200,6 @@ "bad/resources/properties/templated_code.yaml": { "filePath": "bad/resources/properties/templated_code.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -84418,7 +84327,6 @@ "bad/resources/rds/instance_sizes.yaml": { "filePath": "bad/resources/rds/instance_sizes.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -85391,7 +85299,6 @@ "bad/resources/rds/not_enum_master_username.yaml": { "filePath": "bad/resources/rds/not_enum_master_username.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -85571,7 +85478,6 @@ "bad/resources/rds/not_enum_master_username_join.yaml": { "filePath": "bad/resources/rds/not_enum_master_username_join.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -85676,7 +85582,6 @@ "bad/resources/s3/access-control-obsolete.yaml": { "filePath": "bad/resources/s3/access-control-obsolete.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -85782,7 +85687,6 @@ "bad/resources/sns/topic_name.yaml": { "filePath": "bad/resources/sns/topic_name.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -85872,7 +85776,6 @@ "bad/resources/uniqueNames.yaml": { "filePath": "bad/resources/uniqueNames.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -85949,7 +85852,6 @@ "bad/resources/update_policy_unsupported_e3016.yaml": { "filePath": "bad/resources/update_policy_unsupported_e3016.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -86031,7 +85933,6 @@ "bad/resources_circular_dependency.yaml": { "filePath": "bad/resources_circular_dependency.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 11, "counts": { @@ -87317,7 +87218,6 @@ "bad/resources_circular_dependency_2.yaml": { "filePath": "bad/resources_circular_dependency_2.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 9, "counts": { diff --git a/src/resources/expected/validation_reports3.json b/src/resources/expected/validation_reports3.json index a76aa586..9534aa06 100644 --- a/src/resources/expected/validation_reports3.json +++ b/src/resources/expected/validation_reports3.json @@ -2,7 +2,6 @@ "bad/resources_circular_dependency_dependson.yaml": { "filePath": "bad/resources_circular_dependency_dependson.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -100,7 +99,6 @@ "bad/resources_cloudfront_invalid_aliases.yaml": { "filePath": "bad/resources_cloudfront_invalid_aliases.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -292,7 +290,6 @@ "bad/resources_cognito_userpool_tag_is_list.yaml": { "filePath": "bad/resources_cognito_userpool_tag_is_list.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -381,7 +378,6 @@ "bad/resources_deletionpolicy.yaml": { "filePath": "bad/resources_deletionpolicy.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -984,7 +980,6 @@ "bad/resources_iam_instanceprofile_roles.yaml": { "filePath": "bad/resources_iam_instanceprofile_roles.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1030,7 +1025,6 @@ "bad/resources_updatereplacepolicy.yaml": { "filePath": "bad/resources_updatereplacepolicy.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -1669,7 +1663,6 @@ "bad/route53.yaml": { "filePath": "bad/route53.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 11, "counts": { @@ -2727,7 +2720,6 @@ "bad/route53_conditional_record_arrays.yaml": { "filePath": "bad/route53_conditional_record_arrays.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 10, "counts": { @@ -3267,7 +3259,6 @@ "bad/route53_conditional_scenarios.yaml": { "filePath": "bad/route53_conditional_scenarios.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -3527,7 +3518,6 @@ "bad/s3_tiering_bad_days.yaml": { "filePath": "bad/s3_tiering_bad_days.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -3647,7 +3637,6 @@ "bad/sagemaker_instance_types.yaml": { "filePath": "bad/sagemaker_instance_types.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -4641,7 +4630,6 @@ "bad/sam/api_missing_stagename.yaml": { "filePath": "bad/sam/api_missing_stagename.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4680,7 +4668,6 @@ "bad/sam/connector_missing_destination.yaml": { "filePath": "bad/sam/connector_missing_destination.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4719,7 +4706,6 @@ "bad/sam/connector_missing_source.yaml": { "filePath": "bad/sam/connector_missing_source.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4758,7 +4744,6 @@ "bad/sam/function_autopublishalias_invalid_name.yaml": { "filePath": "bad/sam/function_autopublishalias_invalid_name.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4797,7 +4782,6 @@ "bad/sam/function_capacityprovider_with_vpcconfig.yaml": { "filePath": "bad/sam/function_capacityprovider_with_vpcconfig.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4836,7 +4820,6 @@ "bad/sam/function_deploymentpreference_without_alias.yaml": { "filePath": "bad/sam/function_deploymentpreference_without_alias.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4875,7 +4858,6 @@ "bad/sam/function_dlq_invalid_type.yaml": { "filePath": "bad/sam/function_dlq_invalid_type.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4914,7 +4896,6 @@ "bad/sam/function_dlq_missing_targetarn.yaml": { "filePath": "bad/sam/function_dlq_missing_targetarn.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4953,7 +4934,6 @@ "bad/sam/function_functionscaling_without_capacityprovider.yaml": { "filePath": "bad/sam/function_functionscaling_without_capacityprovider.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4992,7 +4972,6 @@ "bad/sam/function_image_with_handler_runtime.yaml": { "filePath": "bad/sam/function_image_with_handler_runtime.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5031,7 +5010,6 @@ "bad/sam/function_packagetype_invalid.yaml": { "filePath": "bad/sam/function_packagetype_invalid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5070,7 +5048,6 @@ "bad/sam/function_provisioned_concurrency_without_alias.yaml": { "filePath": "bad/sam/function_provisioned_concurrency_without_alias.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5109,7 +5086,6 @@ "bad/sam/function_url_config_missing_authtype.yaml": { "filePath": "bad/sam/function_url_config_missing_authtype.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5148,7 +5124,6 @@ "bad/sam/function_versiondeletionpolicy_without_alias.yaml": { "filePath": "bad/sam/function_versiondeletionpolicy_without_alias.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5187,7 +5162,6 @@ "bad/sam/function_zip_missing_runtime_handler.yaml": { "filePath": "bad/sam/function_zip_missing_runtime_handler.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5226,7 +5200,6 @@ "bad/sam/function_zip_with_imageuri.yaml": { "filePath": "bad/sam/function_zip_with_imageuri.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5265,7 +5238,6 @@ "bad/sam/globals_not_dict.yaml": { "filePath": "bad/sam/globals_not_dict.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5299,7 +5271,6 @@ "bad/sam/globals_section_not_dict.yaml": { "filePath": "bad/sam/globals_section_not_dict.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5333,7 +5304,6 @@ "bad/sam/globals_unknown_property.yaml": { "filePath": "bad/sam/globals_unknown_property.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5367,7 +5337,6 @@ "bad/sam/globals_unknown_section.yaml": { "filePath": "bad/sam/globals_unknown_section.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5401,7 +5370,6 @@ "bad/sam/graphqlapi_missing_auth.yaml": { "filePath": "bad/sam/graphqlapi_missing_auth.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5440,7 +5408,6 @@ "bad/sam/layerversion_invalid_compatible_architectures.yaml": { "filePath": "bad/sam/layerversion_invalid_compatible_architectures.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5479,7 +5446,6 @@ "bad/sam/layerversion_invalid_retention_policy.yaml": { "filePath": "bad/sam/layerversion_invalid_retention_policy.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5518,7 +5484,6 @@ "bad/sam/simpletable_primarykey_invalid_type.yaml": { "filePath": "bad/sam/simpletable_primarykey_invalid_type.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5557,7 +5522,6 @@ "bad/sam/simpletable_primarykey_missing_type.yaml": { "filePath": "bad/sam/simpletable_primarykey_missing_type.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5596,7 +5560,6 @@ "bad/sam/statemachine_both_definitions.yaml": { "filePath": "bad/sam/statemachine_both_definitions.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5635,7 +5598,6 @@ "bad/sam/statemachine_no_definition.yaml": { "filePath": "bad/sam/statemachine_no_definition.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5674,7 +5636,6 @@ "bad/sam/transform_bogus_name.yaml": { "filePath": "bad/sam/transform_bogus_name.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5732,7 +5693,6 @@ "bad/sam/transform_wrong_date.yaml": { "filePath": "bad/sam/transform_wrong_date.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5790,7 +5750,6 @@ "bad/schema_additional_props.yaml": { "filePath": "bad/schema_additional_props.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5964,7 +5923,6 @@ "bad/schema_composition.yaml": { "filePath": "bad/schema_composition.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -6251,7 +6209,6 @@ "bad/schema_conditional_type.yaml": { "filePath": "bad/schema_conditional_type.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -6339,7 +6296,6 @@ "bad/schema_enum_violation.yaml": { "filePath": "bad/schema_enum_violation.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -6478,7 +6434,6 @@ "bad/schema_format_violation.yaml": { "filePath": "bad/schema_format_violation.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -6629,7 +6584,6 @@ "bad/schema_lifecycle.yaml": { "filePath": "bad/schema_lifecycle.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -6996,7 +6950,6 @@ "bad/schema_numeric_bounds.yaml": { "filePath": "bad/schema_numeric_bounds.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -7141,7 +7094,6 @@ "bad/schema_property_constraints.yaml": { "filePath": "bad/schema_property_constraints.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -7421,7 +7373,6 @@ "bad/schema_required_xor_conditional.yaml": { "filePath": "bad/schema_required_xor_conditional.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -7581,7 +7532,6 @@ "bad/schema_string_length.yaml": { "filePath": "bad/schema_string_length.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -7661,7 +7611,6 @@ "bad/schema_structural.yaml": { "filePath": "bad/schema_structural.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -8031,7 +7980,6 @@ "bad/schema_type_mismatch.yaml": { "filePath": "bad/schema_type_mismatch.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -8159,7 +8107,6 @@ "bad/schema_unique_items.yaml": { "filePath": "bad/schema_unique_items.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -8230,7 +8177,6 @@ "bad/schema_write_only.yaml": { "filePath": "bad/schema_write_only.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -8351,7 +8297,6 @@ "bad/security_issues.yaml": { "filePath": "bad/security_issues.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -8502,7 +8447,6 @@ "bad/sg_bad_port_range.yaml": { "filePath": "bad/sg_bad_port_range.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -8594,7 +8538,6 @@ "bad/sg_open_egress.yaml": { "filePath": "bad/sg_open_egress.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -8676,7 +8619,6 @@ "bad/simple_sub_param.yaml": { "filePath": "bad/simple_sub_param.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -8739,7 +8681,6 @@ "bad/sns_cross_account.yaml": { "filePath": "bad/sns_cross_account.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -8802,7 +8743,6 @@ "bad/some_logs_stream_lambda.yaml": { "filePath": "bad/some_logs_stream_lambda.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -9314,7 +9254,6 @@ "bad/sqs_fifo_no_suffix.yaml": { "filePath": "bad/sqs_fifo_no_suffix.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -9499,7 +9438,6 @@ "bad/sqs_fifo_standard_dlq.yaml": { "filePath": "bad/sqs_fifo_standard_dlq.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -9757,7 +9695,6 @@ "bad/ssm_document_invalid.yaml": { "filePath": "bad/ssm_document_invalid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -9862,7 +9799,6 @@ "bad/stepfunctions_bad_start_at.yaml": { "filePath": "bad/stepfunctions_bad_start_at.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -9940,7 +9876,6 @@ "bad/stepfunctions_invalid_state.yaml": { "filePath": "bad/stepfunctions_invalid_state.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -10037,7 +9972,6 @@ "bad/string.yaml": { "filePath": "bad/string.yaml", "status": "ERROR", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -10070,7 +10004,6 @@ "bad/sub_needed.yaml": { "filePath": "bad/sub_needed.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -10193,7 +10126,6 @@ "bad/sub_nested_intrinsic.yaml": { "filePath": "bad/sub_nested_intrinsic.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -10275,7 +10207,6 @@ "bad/subnet_outside_vpc.yaml": { "filePath": "bad/subnet_outside_vpc.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -10421,7 +10352,6 @@ "bad/subnet_overlap.yaml": { "filePath": "bad/subnet_overlap.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -10734,7 +10664,6 @@ "bad/subnet_overlap_multi.yaml": { "filePath": "bad/subnet_overlap_multi.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -11356,7 +11285,6 @@ "bad/template.yaml": { "filePath": "bad/template.yaml", "status": "ERROR", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -11389,7 +11317,6 @@ "bad/templates/base.yaml": { "filePath": "bad/templates/base.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -11464,7 +11391,6 @@ "bad/templates/base_date.yaml": { "filePath": "bad/templates/base_date.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -11511,7 +11437,6 @@ "bad/templates/base_null.yaml": { "filePath": "bad/templates/base_null.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -11572,7 +11497,6 @@ "bad/templates/description_object.yaml": { "filePath": "bad/templates/description_object.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -11606,7 +11530,6 @@ "bad/templates/transform_invalid_entries.yaml": { "filePath": "bad/templates/transform_invalid_entries.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -11668,7 +11591,6 @@ "bad/transform/auto_publish_alias.yaml": { "filePath": "bad/transform/auto_publish_alias.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -11726,7 +11648,6 @@ "bad/transform/no_properties.yaml": { "filePath": "bad/transform/no_properties.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -11765,7 +11686,6 @@ "bad/transform_serverless_auto_publish_alias.yaml": { "filePath": "bad/transform_serverless_auto_publish_alias.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -11804,7 +11724,6 @@ "bad/transform_serverless_template.yaml": { "filePath": "bad/transform_serverless_template.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 6, "counts": { @@ -11881,7 +11800,6 @@ "bad/undefined_condition.yaml": { "filePath": "bad/undefined_condition.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -11939,7 +11857,6 @@ "bad/unique_items.yaml": { "filePath": "bad/unique_items.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12005,7 +11922,6 @@ "bad/unknown_properties.yaml": { "filePath": "bad/unknown_properties.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -12146,7 +12062,6 @@ "cdk/DemoStack.template.json": { "filePath": "cdk/DemoStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -12673,7 +12588,6 @@ "cdk/amazon-mq-rabbitmq-lambda--AmazonMqRabbitmqLambdaStack.template.json": { "filePath": "cdk/amazon-mq-rabbitmq-lambda--AmazonMqRabbitmqLambdaStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 27, "counts": { @@ -13707,7 +13621,6 @@ "cdk/amplify-console-app--AmplifyConsoleApp.template.json": { "filePath": "cdk/amplify-console-app--AmplifyConsoleApp.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -13814,7 +13727,6 @@ "cdk/api-cors-lambda-crud-dynamodb--ApiLambdaCrudDynamoDBExample.template.json": { "filePath": "cdk/api-cors-lambda-crud-dynamodb--ApiLambdaCrudDynamoDBExample.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 41, "counts": { @@ -15983,7 +15895,6 @@ "cdk/api-gateway-async-lambda-invocation--ApiGatewayAsyncLambdaStack.template.json": { "filePath": "cdk/api-gateway-async-lambda-invocation--ApiGatewayAsyncLambdaStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 19, "counts": { @@ -16805,7 +16716,6 @@ "cdk/api-gateway-lambda-token-authorizer--gateway-lambda-auth-stack.template.json": { "filePath": "cdk/api-gateway-lambda-token-authorizer--gateway-lambda-auth-stack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 20, "counts": { @@ -17598,7 +17508,6 @@ "cdk/api-gateway-parallel-step-functions--apigateway-parallel-stepfunctions-stack-2.template.json": { "filePath": "cdk/api-gateway-parallel-step-functions--apigateway-parallel-stepfunctions-stack-2.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 27, "counts": { @@ -18661,7 +18570,6 @@ "cdk/api-gateway-parallel-step-functions--apigatewayparallelstepfunctionsstack2nestedstacklambda9F5CAB08.nested.template.json": { "filePath": "cdk/api-gateway-parallel-step-functions--apigatewayparallelstepfunctionsstack2nestedstacklambda9F5CAB08.nested.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 18, "counts": { @@ -19426,7 +19334,6 @@ "cdk/api-websocket-lambda-dynamodb--chat-app.template.json": { "filePath": "cdk/api-websocket-lambda-dynamodb--chat-app.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 22, "counts": { @@ -19987,7 +19894,6 @@ "cdk/application-load-balancer--LoadBalancerStack.template.json": { "filePath": "cdk/application-load-balancer--LoadBalancerStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 36, "counts": { @@ -21785,7 +21691,6 @@ "cdk/appsync-graphql-dynamodb--CdkAppsyncDemoStack.template.json": { "filePath": "cdk/appsync-graphql-dynamodb--CdkAppsyncDemoStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 15, "counts": { @@ -22298,7 +22203,6 @@ "cdk/appsync-graphql-eventbridge--AppSyncEventBridge.template.json": { "filePath": "cdk/appsync-graphql-eventbridge--AppSyncEventBridge.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 12, "counts": { @@ -22691,7 +22595,6 @@ "cdk/appsync-graphql-http--AppSyncGraphQLHTTPExample.template.json": { "filePath": "cdk/appsync-graphql-http--AppSyncGraphQLHTTPExample.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 9, "counts": { @@ -23104,7 +23007,6 @@ "cdk/aspects--SampleStack.template.json": { "filePath": "cdk/aspects--SampleStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 9, "counts": { @@ -23456,7 +23358,6 @@ "cdk/aws-transfer-sftp-server--IncomingDataStack-dev.template.json": { "filePath": "cdk/aws-transfer-sftp-server--IncomingDataStack-dev.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -23541,7 +23442,6 @@ "cdk/aws-transfer-sftp-server--SftpServerStack-dev.template.json": { "filePath": "cdk/aws-transfer-sftp-server--SftpServerStack-dev.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 29, "counts": { diff --git a/src/resources/expected/validation_reports4.json b/src/resources/expected/validation_reports4.json index 862194c1..588b4583 100644 --- a/src/resources/expected/validation_reports4.json +++ b/src/resources/expected/validation_reports4.json @@ -2,7 +2,6 @@ "cdk/aws-transfer-sftp-server--SftpServerStack-prod.template.json": { "filePath": "cdk/aws-transfer-sftp-server--SftpServerStack-prod.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 29, "counts": { @@ -1293,7 +1292,6 @@ "cdk/backup-s3--AwsBackupS3Stack.template.json": { "filePath": "cdk/backup-s3--AwsBackupS3Stack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -1426,7 +1424,6 @@ "cdk/batch-ecr-openmp--AwsBatchOpenmpBenchmarkStack.template.json": { "filePath": "cdk/batch-ecr-openmp--AwsBatchOpenmpBenchmarkStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 41, "counts": { @@ -2898,7 +2895,6 @@ "cdk/classic-load-balancer--LoadBalancerStack.template.json": { "filePath": "cdk/classic-load-balancer--LoadBalancerStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 33, "counts": { @@ -4462,7 +4458,6 @@ "cdk/cloudfront-functions--DemoCloudfrontFunctionsStack.template.json": { "filePath": "cdk/cloudfront-functions--DemoCloudfrontFunctionsStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 13, "counts": { @@ -4715,7 +4710,6 @@ "cdk/codepipeline-build-deploy--CodepipelineBuildDeployStack.template.json": { "filePath": "cdk/codepipeline-build-deploy--CodepipelineBuildDeployStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 74, "counts": { @@ -7321,7 +7315,6 @@ "cdk/cognito-api-lambda--CognitoProtectedApi.template.json": { "filePath": "cdk/cognito-api-lambda--CognitoProtectedApi.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 14, "counts": { @@ -7901,7 +7894,6 @@ "cdk/custom-logical-names--MyStack.template.json": { "filePath": "cdk/custom-logical-names--MyStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -7961,7 +7953,6 @@ "cdk/custom-resource--CustomResourceDemoStack.template.json": { "filePath": "cdk/custom-resource--CustomResourceDemoStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -8147,7 +8138,6 @@ "cdk/custom-resource-provider--CustomResourceDemoStack.template.json": { "filePath": "cdk/custom-resource-provider--CustomResourceDemoStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 11, "counts": { @@ -8393,7 +8383,6 @@ "cdk/ddb-stream-lambda-sns--DdbStreamStack.template.json": { "filePath": "cdk/ddb-stream-lambda-sns--DdbStreamStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 16, "counts": { @@ -8918,7 +8907,6 @@ "cdk/ec2-instance--EC2Example.template.json": { "filePath": "cdk/ec2-instance--EC2Example.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 28, "counts": { @@ -9941,7 +9929,6 @@ "cdk/ec2-instance-connect-endpoint--integ-testing-eicendpoint.template.json": { "filePath": "cdk/ec2-instance-connect-endpoint--integ-testing-eicendpoint.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 29, "counts": { @@ -10874,7 +10861,6 @@ "cdk/ecs-cluster--MyFirstEcsCluster.template.json": { "filePath": "cdk/ecs-cluster--MyFirstEcsCluster.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 33, "counts": { @@ -12137,7 +12123,6 @@ "cdk/ecs-cross-stack-load-balancer--CrossStackLBInfra.template.json": { "filePath": "cdk/ecs-cross-stack-load-balancer--CrossStackLBInfra.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 25, "counts": { @@ -13108,7 +13093,6 @@ "cdk/ecs-cross-stack-load-balancer--SplitAtListener-LBStack.template.json": { "filePath": "cdk/ecs-cross-stack-load-balancer--SplitAtListener-LBStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -13259,7 +13243,6 @@ "cdk/ecs-cross-stack-load-balancer--SplitAtListener-ServiceStack.template.json": { "filePath": "cdk/ecs-cross-stack-load-balancer--SplitAtListener-ServiceStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 9, "counts": { @@ -14018,7 +14001,6 @@ "cdk/ecs-cross-stack-load-balancer--SplitAtTargetGroup-LBStack.template.json": { "filePath": "cdk/ecs-cross-stack-load-balancer--SplitAtTargetGroup-LBStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -14322,7 +14304,6 @@ "cdk/ecs-cross-stack-load-balancer--SplitAtTargetGroup-ServiceStack.template.json": { "filePath": "cdk/ecs-cross-stack-load-balancer--SplitAtTargetGroup-ServiceStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -14908,7 +14889,6 @@ "cdk/ecs-ecs-service-with-logging--Willkommen.template.json": { "filePath": "cdk/ecs-ecs-service-with-logging--Willkommen.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 46, "counts": { @@ -16637,7 +16617,6 @@ "cdk/ecs-ecs-service-with-task-networking--ec2-service-with-task-networking.template.json": { "filePath": "cdk/ecs-ecs-service-with-task-networking--ec2-service-with-task-networking.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 44, "counts": { @@ -18367,7 +18346,6 @@ "cdk/ecs-ecs-service-with-task-placement--sample-aws-ecs-integ-ecs.template.json": { "filePath": "cdk/ecs-ecs-service-with-task-placement--sample-aws-ecs-integ-ecs.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 43, "counts": { @@ -20032,7 +20010,6 @@ "cdk/ecs-fargate-application-load-balanced-service--Bonjour.template.json": { "filePath": "cdk/ecs-fargate-application-load-balanced-service--Bonjour.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 38, "counts": { @@ -21937,7 +21914,6 @@ "cdk/ecs-fargate-service-with-auto-scaling--aws-fargate-application-autoscaling.template.json": { "filePath": "cdk/ecs-fargate-service-with-auto-scaling--aws-fargate-application-autoscaling.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 37, "counts": { @@ -23660,7 +23636,6 @@ "cdk/ecs-fargate-service-with-logging--Willkommen.template.json": { "filePath": "cdk/ecs-fargate-service-with-logging--Willkommen.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 32, "counts": { @@ -25027,7 +25002,6 @@ "cdk/eventbridge-lambda--EventBridgeLambdaStack.template.json": { "filePath": "cdk/eventbridge-lambda--EventBridgeLambdaStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -25331,7 +25305,6 @@ "cdk/http-proxy-apigateway--HttpProxy.template.json": { "filePath": "cdk/http-proxy-apigateway--HttpProxy.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 9, "counts": { @@ -25695,7 +25668,6 @@ "cdk/imagebuilder--ImagebuilderStack.template.json": { "filePath": "cdk/imagebuilder--ImagebuilderStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 11, "counts": { @@ -26401,7 +26373,6 @@ "cdk/inspector2--Inspector2EnableDelegatedAdminAccountStack.template.json": { "filePath": "cdk/inspector2--Inspector2EnableDelegatedAdminAccountStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 12, "counts": { @@ -26561,7 +26532,6 @@ "cdk/inspector2--Inspector2EnableStack.template.json": { "filePath": "cdk/inspector2--Inspector2EnableStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -26641,7 +26611,6 @@ "cdk/inspector2--Inspector2MonitoringStack.template.json": { "filePath": "cdk/inspector2--Inspector2MonitoringStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 14, "counts": { @@ -27107,7 +27076,6 @@ "cdk/lambda-cloudwatch-dashboard--LambdaCloudwatchDashboardStack.template.json": { "filePath": "cdk/lambda-cloudwatch-dashboard--LambdaCloudwatchDashboardStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -27313,7 +27281,6 @@ "cdk/lambda-cron--LambdaCronExample.template.json": { "filePath": "cdk/lambda-cron--LambdaCronExample.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -27526,7 +27493,6 @@ "cdk/lambda-layer--LambdaLayerStack.template.json": { "filePath": "cdk/lambda-layer--LambdaLayerStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -27675,7 +27641,6 @@ "cdk/lambda-manage-s3-event-notification--AStack.template.json": { "filePath": "cdk/lambda-manage-s3-event-notification--AStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -27756,7 +27721,6 @@ "cdk/lambda-manage-s3-event-notification--BStack.template.json": { "filePath": "cdk/lambda-manage-s3-event-notification--BStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -27818,7 +27782,6 @@ "cdk/lambda-manage-s3-event-notification--SharedStack.template.json": { "filePath": "cdk/lambda-manage-s3-event-notification--SharedStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -27963,7 +27926,6 @@ "cdk/my-widget-service--MyWidgetServiceStack.template.json": { "filePath": "cdk/my-widget-service--MyWidgetServiceStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 23, "counts": { @@ -29292,7 +29254,6 @@ "cdk/pat-the-big-fan--TheBigFanStack.template.json": { "filePath": "cdk/pat-the-big-fan--TheBigFanStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 27, "counts": { @@ -30373,7 +30334,6 @@ "cdk/pat-the-cloudwatch-dashboard--TheCloudwatchDashboardStack.template.json": { "filePath": "cdk/pat-the-cloudwatch-dashboard--TheCloudwatchDashboardStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 20, "counts": { @@ -30983,7 +30943,6 @@ "cdk/pat-the-destined-lambda--TheDestinedLambdaStack.template.json": { "filePath": "cdk/pat-the-destined-lambda--TheDestinedLambdaStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 28, "counts": { @@ -32240,7 +32199,6 @@ "cdk/pat-the-dynamo-streamer--TheDynamoStreamerStack.template.json": { "filePath": "cdk/pat-the-dynamo-streamer--TheDynamoStreamerStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 17, "counts": { @@ -32901,7 +32859,6 @@ "cdk/pat-the-eventbridge-atm--TheEventbridgeAtmStack.template.json": { "filePath": "cdk/pat-the-eventbridge-atm--TheEventbridgeAtmStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 28, "counts": { @@ -34323,7 +34280,6 @@ "cdk/pat-the-eventbridge-circuit-breaker--TheEventbridgeCircuitBreakerStack.template.json": { "filePath": "cdk/pat-the-eventbridge-circuit-breaker--TheEventbridgeCircuitBreakerStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 22, "counts": { @@ -35401,7 +35357,6 @@ "cdk/pat-the-eventbridge-etl--TheEventbridgeEtlStack.template.json": { "filePath": "cdk/pat-the-eventbridge-etl--TheEventbridgeEtlStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 57, "counts": { @@ -37655,7 +37610,6 @@ "cdk/pat-the-lambda-circuit-breaker--TheLambdaCircuitBreakerStack.template.json": { "filePath": "cdk/pat-the-lambda-circuit-breaker--TheLambdaCircuitBreakerStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 10, "counts": { @@ -38065,7 +38019,6 @@ "cdk/pat-the-saga-stepfunction--TheSagaStepfunctionSingleTableStack.template.json": { "filePath": "cdk/pat-the-saga-stepfunction--TheSagaStepfunctionSingleTableStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 44, "counts": { @@ -39656,7 +39609,6 @@ "cdk/pat-the-scalable-webhook--TheScalableWebhookStack.template.json": { "filePath": "cdk/pat-the-scalable-webhook--TheScalableWebhookStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 22, "counts": { @@ -40742,7 +40694,6 @@ "cdk/pat-the-scheduled-lambda--TheScheduledLambdaStack.template.json": { "filePath": "cdk/pat-the-scheduled-lambda--TheScheduledLambdaStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -41015,7 +40966,6 @@ "cdk/pat-the-simple-graphql-service--TheSimpleGraphqlServiceStack.template.json": { "filePath": "cdk/pat-the-simple-graphql-service--TheSimpleGraphqlServiceStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 22, "counts": { @@ -41911,7 +41861,6 @@ "cdk/pat-the-simple-webservice--TheSimpleWebserviceStack.template.json": { "filePath": "cdk/pat-the-simple-webservice--TheSimpleWebserviceStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 10, "counts": { @@ -42321,7 +42270,6 @@ "cdk/pat-the-state-machine--TheStateMachineStack.template.json": { "filePath": "cdk/pat-the-state-machine--TheStateMachineStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 11, "counts": { @@ -42702,7 +42650,6 @@ "cdk/pat-the-waf-apigateway--APIGatewayStack.template.json": { "filePath": "cdk/pat-the-waf-apigateway--APIGatewayStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 12, "counts": { @@ -43276,7 +43223,6 @@ "cdk/pat-the-waf-apigateway--TheWafStack.template.json": { "filePath": "cdk/pat-the-waf-apigateway--TheWafStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -43387,7 +43333,6 @@ "cdk/pat-the-xray-tracer--TheXrayDynamoFlow.template.json": { "filePath": "cdk/pat-the-xray-tracer--TheXrayDynamoFlow.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -43735,7 +43680,6 @@ "cdk/pat-the-xray-tracer--TheXrayHttpFlow.template.json": { "filePath": "cdk/pat-the-xray-tracer--TheXrayHttpFlow.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 6, "counts": { @@ -44041,7 +43985,6 @@ "cdk/pat-the-xray-tracer--TheXraySQSFlow.template.json": { "filePath": "cdk/pat-the-xray-tracer--TheXraySQSFlow.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 11, "counts": { @@ -44548,7 +44491,6 @@ "cdk/pat-the-xray-tracer--TheXraySnsFlow.template.json": { "filePath": "cdk/pat-the-xray-tracer--TheXraySnsFlow.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 12, "counts": { @@ -45118,7 +45060,6 @@ "cdk/pat-the-xray-tracer--TheXrayTracerStack.template.json": { "filePath": "cdk/pat-the-xray-tracer--TheXrayTracerStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 14, "counts": { @@ -45662,7 +45603,6 @@ "cdk/py-api-cors-lambda--ApiCorsLambdaStack.template.json": { "filePath": "cdk/py-api-cors-lambda--ApiCorsLambdaStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 13, "counts": { @@ -46289,7 +46229,6 @@ "cdk/py-api-eventbridge-lambda--ApiEventBridgeLambdaStack.template.json": { "filePath": "cdk/py-api-eventbridge-lambda--ApiEventBridgeLambdaStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 28, "counts": { @@ -47331,7 +47270,6 @@ "cdk/py-api-sqs-lambda--ApiSqsLambdaStack.template.json": { "filePath": "cdk/py-api-sqs-lambda--ApiSqsLambdaStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 15, "counts": { @@ -47857,7 +47795,6 @@ "cdk/py-athena-s3-glue--DemoAthenaS3GlueStack.template.json": { "filePath": "cdk/py-athena-s3-glue--DemoAthenaS3GlueStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 21, "counts": { @@ -48484,7 +48421,6 @@ "cdk/py-datasync-s3--cdk-datasync-s3-to-s3-iam.template.json": { "filePath": "cdk/py-datasync-s3--cdk-datasync-s3-to-s3-iam.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -48682,7 +48618,6 @@ "cdk/py-datasync-s3--cdk-datasync-s3-to-s3.template.json": { "filePath": "cdk/py-datasync-s3--cdk-datasync-s3-to-s3.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -48894,7 +48829,6 @@ "cdk/py-docker-app-with-asg-alb--ASGStack.template.json": { "filePath": "cdk/py-docker-app-with-asg-alb--ASGStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 13, "counts": { @@ -49789,7 +49723,6 @@ "cdk/py-docker-app-with-asg-alb--NetworkStack.template.json": { "filePath": "cdk/py-docker-app-with-asg-alb--NetworkStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 22, "counts": { @@ -50694,7 +50627,6 @@ "cdk/py-docker-app-with-asg-alb--RDSStack.template.json": { "filePath": "cdk/py-docker-app-with-asg-alb--RDSStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 6, "counts": { @@ -51022,7 +50954,6 @@ "cdk/py-docker-app-with-asg-alb--StorageStack.template.json": { "filePath": "cdk/py-docker-app-with-asg-alb--StorageStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -51188,7 +51119,6 @@ "cdk/py-dynamodb-lambda--dynamodb-lambda.template.json": { "filePath": "cdk/py-dynamodb-lambda--dynamodb-lambda.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 11, "counts": { @@ -51616,7 +51546,6 @@ "cdk/py-ec2-cloudwatch--ec2-cloudwatch.template.json": { "filePath": "cdk/py-ec2-cloudwatch--ec2-cloudwatch.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 43, "counts": { @@ -53418,7 +53347,6 @@ "cdk/py-ecs-serviceconnect--CdkExamplesServiceConnectStack.template.json": { "filePath": "cdk/py-ecs-serviceconnect--CdkExamplesServiceConnectStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 29, "counts": { @@ -54469,7 +54397,6 @@ "cdk/py-ecs-serviceconnect--CdkExamplesServiceConnectStackEcrStack6B6F0F99.nested.template.json": { "filePath": "cdk/py-ecs-serviceconnect--CdkExamplesServiceConnectStackEcrStack6B6F0F99.nested.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -54635,7 +54562,6 @@ "cdk/py-ecs-serviceconnect--CdkExamplesServiceConnectStackEcsStack19C526D0.nested.template.json": { "filePath": "cdk/py-ecs-serviceconnect--CdkExamplesServiceConnectStackEcsStack19C526D0.nested.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 20, "counts": { @@ -56004,7 +55930,6 @@ "cdk/py-emr--emr-cluster.template.json": { "filePath": "cdk/py-emr--emr-cluster.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 16, "counts": { @@ -56774,7 +56699,6 @@ "cdk/py-iotcore--CdkIotThingStack.template.json": { "filePath": "cdk/py-iotcore--CdkIotThingStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 19, "counts": { @@ -57361,7 +57285,6 @@ "cdk/py-lambda-cron--LambdaCronExample.template.json": { "filePath": "cdk/py-lambda-cron--LambdaCronExample.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -57551,7 +57474,6 @@ "cdk/py-lambda-from-container--LambdaContainerFunctionStack.template.json": { "filePath": "cdk/py-lambda-from-container--LambdaContainerFunctionStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -57675,7 +57597,6 @@ "cdk/py-lambda-layer--LambdaLayerExample.template.json": { "filePath": "cdk/py-lambda-layer--LambdaLayerExample.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -57847,7 +57768,6 @@ "cdk/py-stepfunctions--aws-stepfunctions-integ.template.json": { "filePath": "cdk/py-stepfunctions--aws-stepfunctions-integ.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -58093,7 +58013,6 @@ "cdk/py-url-shortener--urlshort-app.template.json": { "filePath": "cdk/py-url-shortener--urlshort-app.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 20, "counts": { @@ -59090,7 +59009,6 @@ "cdk/py-url-shortener--urlshort-load-test.template.json": { "filePath": "cdk/py-url-shortener--urlshort-load-test.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -59505,7 +59423,6 @@ "cdk/r53-resolver--R53ResolverStack.template.json": { "filePath": "cdk/r53-resolver--R53ResolverStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 18, "counts": { @@ -60287,7 +60204,6 @@ "cdk/rekognition-lambda-s3-trigger--RekognitionLambdaS3TriggerStack.template.json": { "filePath": "cdk/rekognition-lambda-s3-trigger--RekognitionLambdaS3TriggerStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 15, "counts": { @@ -60684,7 +60600,6 @@ "cdk/resource-overrides--resource-overrides.template.json": { "filePath": "cdk/resource-overrides--resource-overrides.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 21, "counts": { @@ -61617,7 +61532,6 @@ "cdk/route53-resolver-dns-firewall--Route53ResolverDnsFirewallStack.template.json": { "filePath": "cdk/route53-resolver-dns-firewall--Route53ResolverDnsFirewallStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 31, "counts": { @@ -62914,7 +62828,6 @@ "cdk/s3-object-lambda--S3ObjectLambdaStack.template.json": { "filePath": "cdk/s3-object-lambda--S3ObjectLambdaStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 9, "counts": { @@ -63262,7 +63175,6 @@ "cdk/ssm-document-association--SsmDocumentAssociationStack.template.json": { "filePath": "cdk/ssm-document-association--SsmDocumentAssociationStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 17, "counts": { @@ -63927,7 +63839,6 @@ "cdk/static-site-basic--MyStaticSite.template.json": { "filePath": "cdk/static-site-basic--MyStaticSite.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 11, "counts": { @@ -64136,7 +64047,6 @@ "cdk/stepfunction-external-definition--StepfunctionExternalDefinitionStack.template.json": { "filePath": "cdk/stepfunction-external-definition--StepfunctionExternalDefinitionStack.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 12, "counts": { @@ -64555,7 +64465,6 @@ "cdk/stepfunctions-job-poller--aws-stepfunctions-integ.template.json": { "filePath": "cdk/stepfunctions-job-poller--aws-stepfunctions-integ.template.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 11, "counts": { @@ -64841,7 +64750,6 @@ "empty.yaml": { "filePath": "empty.yaml", "status": "ERROR", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -64874,7 +64782,6 @@ "gh-issues/issue-144.yaml": { "filePath": "gh-issues/issue-144.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -64960,7 +64867,6 @@ "gh-issues/issue-183.yaml": { "filePath": "gh-issues/issue-183.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -65277,7 +65183,6 @@ "gh-issues/issue-185.yaml": { "filePath": "gh-issues/issue-185.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -65296,7 +65201,6 @@ "gh-issues/issue-186-clb.json": { "filePath": "gh-issues/issue-186-clb.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -65362,7 +65266,6 @@ "gh-issues/issue-186-imagebuilder.json": { "filePath": "gh-issues/issue-186-imagebuilder.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -65428,7 +65331,6 @@ "gh-issues/issue-194.json": { "filePath": "gh-issues/issue-194.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -65466,7 +65368,6 @@ "gh-issues/issue-201.json": { "filePath": "gh-issues/issue-201.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -65531,7 +65432,6 @@ "gh-issues/issue-226.yaml": { "filePath": "gh-issues/issue-226.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { diff --git a/src/resources/expected/validation_reports5.json b/src/resources/expected/validation_reports5.json index e52099fb..79c9c0f3 100644 --- a/src/resources/expected/validation_reports5.json +++ b/src/resources/expected/validation_reports5.json @@ -2,7 +2,6 @@ "gh-issues/issue-235.yaml": { "filePath": "gh-issues/issue-235.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 38, "counts": { @@ -4662,7 +4661,6 @@ "gh-issues/issue-246.yaml": { "filePath": "gh-issues/issue-246.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -4746,7 +4744,6 @@ "gh-issues/issue-247.json": { "filePath": "gh-issues/issue-247.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4809,7 +4806,6 @@ "gh-issues/issue-264.yaml": { "filePath": "gh-issues/issue-264.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 9, "counts": { @@ -5179,7 +5175,6 @@ "gh-issues/issue-278.yaml": { "filePath": "gh-issues/issue-278.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5219,7 +5214,6 @@ "gh-issues/issue-34-w2506-overfire.json": { "filePath": "gh-issues/issue-34-w2506-overfire.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5257,7 +5251,6 @@ "gh-issues/issue-34.json": { "filePath": "gh-issues/issue-34.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -5436,7 +5429,6 @@ "gh-issues/issue-35.yaml": { "filePath": "gh-issues/issue-35.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5476,7 +5468,6 @@ "gh-issues/issue-36.yaml": { "filePath": "gh-issues/issue-36.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5576,7 +5567,6 @@ "gh-issues/issue-37.yaml": { "filePath": "gh-issues/issue-37.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -5723,7 +5713,6 @@ "gh-issues/issue-38.json": { "filePath": "gh-issues/issue-38.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5785,7 +5774,6 @@ "gh-issues/issue-39.json": { "filePath": "gh-issues/issue-39.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -5912,7 +5900,6 @@ "gh-issues/issue-40.yaml": { "filePath": "gh-issues/issue-40.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -6230,7 +6217,6 @@ "gh-issues/issue-41.json": { "filePath": "gh-issues/issue-41.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -6334,7 +6320,6 @@ "gh-issues/issue-42-if.yaml": { "filePath": "gh-issues/issue-42-if.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -6582,7 +6567,6 @@ "gh-issues/issue-42-ref.yaml": { "filePath": "gh-issues/issue-42-ref.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -6796,7 +6780,6 @@ "gh-issues/issue-42.yaml": { "filePath": "gh-issues/issue-42.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -7044,7 +7027,6 @@ "gh-issues/issue-44.json": { "filePath": "gh-issues/issue-44.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -7124,7 +7106,6 @@ "gh-issues/issue-45.json": { "filePath": "gh-issues/issue-45.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -7230,7 +7211,6 @@ "gh-issues/issue-46.json": { "filePath": "gh-issues/issue-46.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -7368,7 +7348,6 @@ "gh-issues/issue-47.json": { "filePath": "gh-issues/issue-47.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -7543,7 +7522,6 @@ "gh-issues/issue-49.yaml": { "filePath": "gh-issues/issue-49.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -7829,7 +7807,6 @@ "gh-issues/issue-50.json": { "filePath": "gh-issues/issue-50.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -7869,7 +7846,6 @@ "gh-issues/issue-52.json": { "filePath": "gh-issues/issue-52.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -7996,7 +7972,6 @@ "gh-issues/issue-53.json": { "filePath": "gh-issues/issue-53.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 37, "counts": { @@ -9706,7 +9681,6 @@ "gh-issues/issue-54-bare.json": { "filePath": "gh-issues/issue-54-bare.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -9746,7 +9720,6 @@ "gh-issues/issue-54-with-ownership.json": { "filePath": "gh-issues/issue-54-with-ownership.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -9809,7 +9782,6 @@ "gh-issues/issue-54.json": { "filePath": "gh-issues/issue-54.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -9892,7 +9864,6 @@ "gh-issues/issue-55.json": { "filePath": "gh-issues/issue-55.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -9932,7 +9903,6 @@ "gh-issues/issue-56.json": { "filePath": "gh-issues/issue-56.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -9996,7 +9966,6 @@ "gh-issues/issue-57.json": { "filePath": "gh-issues/issue-57.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -10036,7 +10005,6 @@ "gh-issues/issue-61.json": { "filePath": "gh-issues/issue-61.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -10225,7 +10193,6 @@ "gh-issues/issue-62.json": { "filePath": "gh-issues/issue-62.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -10371,7 +10338,6 @@ "gh-issues/issue-63.json": { "filePath": "gh-issues/issue-63.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -10429,7 +10395,6 @@ "gh-issues/issue-65.json": { "filePath": "gh-issues/issue-65.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -10621,7 +10586,6 @@ "gh-issues/issue-67.json": { "filePath": "gh-issues/issue-67.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -10684,7 +10648,6 @@ "gh-issues/issue-68.json": { "filePath": "gh-issues/issue-68.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -10996,7 +10959,6 @@ "gh-issues/issue-69.yaml": { "filePath": "gh-issues/issue-69.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -11067,7 +11029,6 @@ "good/E3019_identity_no_false_positive.yaml": { "filePath": "good/E3019_identity_no_false_positive.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -11300,7 +11261,6 @@ "good/E3022_multi_element_join_distinct.yaml": { "filePath": "good/E3022_multi_element_join_distinct.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -11464,7 +11424,6 @@ "good/E3663_custom_environment_key.yaml": { "filePath": "good/E3663_custom_environment_key.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -11483,7 +11442,6 @@ "good/E9001_aws_cdk_metadata.yaml": { "filePath": "good/E9001_aws_cdk_metadata.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -11545,7 +11503,6 @@ "good/W1028_pseudo_param_branches_reachable.yaml": { "filePath": "good/W1028_pseudo_param_branches_reachable.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -11585,7 +11542,6 @@ "good/W3010_getazs_not_flagged.yaml": { "filePath": "good/W3010_getazs_not_flagged.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -11734,7 +11690,6 @@ "good/apigateway_method_authorizer_same_rest_api.yaml": { "filePath": "good/apigateway_method_authorizer_same_rest_api.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -11960,7 +11915,6 @@ "good/aurora_dbinstance.yaml": { "filePath": "good/aurora_dbinstance.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12134,7 +12088,6 @@ "good/both_forms.yaml": { "filePath": "good/both_forms.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 13, "counts": { @@ -12218,7 +12171,6 @@ "good/cdk_bootstrap_version_rule.json": { "filePath": "good/cdk_bootstrap_version_rule.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12258,7 +12210,6 @@ "good/cloudfront_valid.yaml": { "filePath": "good/cloudfront_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12298,7 +12249,6 @@ "good/codepipeline_artifact_counts.yaml": { "filePath": "good/codepipeline_artifact_counts.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12357,7 +12307,6 @@ "good/complex_conditions.yaml": { "filePath": "good/complex_conditions.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -12656,7 +12605,6 @@ "good/conditions.yaml": { "filePath": "good/conditions.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -12739,7 +12687,6 @@ "good/conditions/and.yaml": { "filePath": "good/conditions/and.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12758,7 +12705,6 @@ "good/core/conditions.yaml": { "filePath": "good/core/conditions.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -13381,7 +13327,6 @@ "good/core/config_cfn_lint.json": { "filePath": "good/core/config_cfn_lint.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -13414,7 +13359,6 @@ "good/core/config_cfn_lint.yaml": { "filePath": "good/core/config_cfn_lint.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -13447,7 +13391,6 @@ "good/core/config_default_e3012.yaml": { "filePath": "good/core/config_default_e3012.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -13550,7 +13493,6 @@ "good/core/config_only_i1002.yaml": { "filePath": "good/core/config_only_i1002.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -13583,7 +13525,6 @@ "good/core/config_only_i1003.yaml": { "filePath": "good/core/config_only_i1003.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -13616,7 +13557,6 @@ "good/core/config_parameters.yaml": { "filePath": "good/core/config_parameters.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -13649,7 +13589,6 @@ "good/core/directives.yaml": { "filePath": "good/core/directives.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -13725,7 +13664,6 @@ "good/core/resource_attributes.yaml": { "filePath": "good/core/resource_attributes.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -13975,7 +13913,6 @@ "good/custom/is-defined.yaml": { "filePath": "good/custom/is-defined.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -14444,7 +14381,6 @@ "good/custom/is-not-defined.yaml": { "filePath": "good/custom/is-not-defined.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -14755,7 +14691,6 @@ "good/custom/numeric-inequalities-large.yaml": { "filePath": "good/custom/numeric-inequalities-large.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -14961,7 +14896,6 @@ "good/custom/numeric-inequalities-small.yaml": { "filePath": "good/custom/numeric-inequalities-small.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -15167,7 +15101,6 @@ "good/decode/parsing.json": { "filePath": "good/decode/parsing.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -15218,7 +15151,6 @@ "good/decode/yaml11_scalars.yaml": { "filePath": "good/decode/yaml11_scalars.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -15237,7 +15169,6 @@ "good/deletion_policies.yaml": { "filePath": "good/deletion_policies.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -15468,7 +15399,6 @@ "good/dynamodb_provisioned.yaml": { "filePath": "good/dynamodb_provisioned.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -15588,7 +15518,6 @@ "good/dynamodb_valid_attributes.yaml": { "filePath": "good/dynamodb_valid_attributes.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -15708,7 +15637,6 @@ "good/ecs_awsvpc_valid.yaml": { "filePath": "good/ecs_awsvpc_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -15794,7 +15722,6 @@ "good/ecs_fargate.yaml": { "filePath": "good/ecs_fargate.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -16014,7 +15941,6 @@ "good/ecs_fargate_ddb_valid.yaml": { "filePath": "good/ecs_fargate_ddb_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 14, "counts": { @@ -17808,7 +17734,6 @@ "good/ecs_fargate_units_and_sizes.yaml": { "filePath": "good/ecs_fargate_units_and_sizes.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -18821,7 +18746,6 @@ "good/ecs_fargate_valid.yaml": { "filePath": "good/ecs_fargate_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -18999,7 +18923,6 @@ "good/elb_https_empty_sslcertificateid.yaml": { "filePath": "good/elb_https_empty_sslcertificateid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -19039,7 +18962,6 @@ "good/enum_case_insensitive_casing.yaml": { "filePath": "good/enum_case_insensitive_casing.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -19191,7 +19113,6 @@ "good/functions/dynamic_reference_embedded.yaml": { "filePath": "good/functions/dynamic_reference_embedded.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -19375,7 +19296,6 @@ "good/functions/foreach.yaml": { "filePath": "good/functions/foreach.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -19455,7 +19375,6 @@ "good/functions/get_stack_output.yaml": { "filePath": "good/functions/get_stack_output.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 10, "counts": { @@ -19675,7 +19594,6 @@ "good/functions/ref.yaml": { "filePath": "good/functions/ref.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -19694,7 +19612,6 @@ "good/functions/relationship_conditions.yaml": { "filePath": "good/functions/relationship_conditions.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -19845,7 +19762,6 @@ "good/functions/relationship_conditions_sam.yaml": { "filePath": "good/functions/relationship_conditions_sam.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -19972,7 +19888,6 @@ "good/functions/select_string_index.yaml": { "filePath": "good/functions/select_string_index.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -20210,7 +20125,6 @@ "good/functions/sub.yaml": { "filePath": "good/functions/sub.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -20733,7 +20647,6 @@ "good/functions/sub_needed.yaml": { "filePath": "good/functions/sub_needed.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 6, "counts": { @@ -21085,7 +20998,6 @@ "good/functions/sub_needed_custom_excludes.yaml": { "filePath": "good/functions/sub_needed_custom_excludes.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -21210,7 +21122,6 @@ "good/functions/sub_needed_transform.yaml": { "filePath": "good/functions/sub_needed_transform.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -21229,7 +21140,6 @@ "good/functions_findinmap.yaml": { "filePath": "good/functions_findinmap.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -21381,7 +21291,6 @@ "good/functions_findinmap_default_value.yaml": { "filePath": "good/functions_findinmap_default_value.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 9, "counts": { @@ -21869,7 +21778,6 @@ "good/functions_findinmap_enhanced.yaml": { "filePath": "good/functions_findinmap_enhanced.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 6, "counts": { @@ -22290,7 +22198,6 @@ "good/generic.yaml": { "filePath": "good/generic.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 13, "counts": { @@ -22902,7 +22809,6 @@ "good/getatt_provisioned_product_outputs.yaml": { "filePath": "good/getatt_provisioned_product_outputs.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -22962,7 +22868,6 @@ "good/getazs_resolves_current_regions.yaml": { "filePath": "good/getazs_resolves_current_regions.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -23154,7 +23059,6 @@ "good/good_conditions_valid_refs.yaml": { "filePath": "good/good_conditions_valid_refs.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -23212,7 +23116,6 @@ "good/iam_conditional_resource_arns.yaml": { "filePath": "good/iam_conditional_resource_arns.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -23231,7 +23134,6 @@ "good/iam_intrinsic_resource_arns.yaml": { "filePath": "good/iam_intrinsic_resource_arns.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -23271,7 +23173,6 @@ "good/iam_intrinsic_resource_arns_schema_valid.yaml": { "filePath": "good/iam_intrinsic_resource_arns_schema_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -23466,7 +23367,6 @@ "good/iam_valid.yaml": { "filePath": "good/iam_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { diff --git a/src/resources/expected/validation_reports6.json b/src/resources/expected/validation_reports6.json index 8dd16fb5..eeb542dd 100644 --- a/src/resources/expected/validation_reports6.json +++ b/src/resources/expected/validation_reports6.json @@ -2,7 +2,6 @@ "good/kms_key_identifier_forms.yaml": { "filePath": "good/kms_key_identifier_forms.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -216,7 +215,6 @@ "good/lambda_permission_source_account.yaml": { "filePath": "good/lambda_permission_source_account.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -361,7 +359,6 @@ "good/lambda_permission_sourcearn_ref_no_account.yaml": { "filePath": "good/lambda_permission_sourcearn_ref_no_account.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -488,7 +485,6 @@ "good/lambda_snapstart.yaml": { "filePath": "good/lambda_snapstart.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -588,7 +584,6 @@ "good/lambda_zipfile.yaml": { "filePath": "good/lambda_zipfile.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -669,7 +664,6 @@ "good/lifecycle_intrinsic_scenarios.yaml": { "filePath": "good/lifecycle_intrinsic_scenarios.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 13, "counts": { @@ -688,7 +682,6 @@ "good/mappings/name.yaml": { "filePath": "good/mappings/name.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -739,7 +732,6 @@ "good/mappings/used.yaml": { "filePath": "good/mappings/used.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -846,7 +838,6 @@ "good/mappings_valid.yaml": { "filePath": "good/mappings_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -904,7 +895,6 @@ "good/minimal.yaml": { "filePath": "good/minimal.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -944,7 +934,6 @@ "good/modules/minimal.yaml": { "filePath": "good/modules/minimal.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -984,7 +973,6 @@ "good/neptune_valid_instanceclass.yaml": { "filePath": "good/neptune_valid_instanceclass.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1069,7 +1057,6 @@ "good/no_value.yaml": { "filePath": "good/no_value.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -1417,7 +1404,6 @@ "good/no_w3010_on_unlisted_type.yaml": { "filePath": "good/no_w3010_on_unlisted_type.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1597,7 +1583,6 @@ "good/output_value_string.yaml": { "filePath": "good/output_value_string.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1692,7 +1677,6 @@ "good/override/complete.yaml": { "filePath": "good/override/complete.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -1858,7 +1842,6 @@ "good/override/required.yaml": { "filePath": "good/override/required.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1920,7 +1903,6 @@ "good/param_constraints_valid.yaml": { "filePath": "good/param_constraints_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1996,7 +1978,6 @@ "good/parameters/F2012_cdl_default_split.yaml": { "filePath": "good/parameters/F2012_cdl_default_split.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -2124,7 +2105,6 @@ "good/parameters/default.yaml": { "filePath": "good/parameters/default.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -2445,7 +2425,6 @@ "good/parameters/not_used_parameters.yaml": { "filePath": "good/parameters/not_used_parameters.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -2620,7 +2599,6 @@ "good/parameters/used_transform_language_extension.json": { "filePath": "good/parameters/used_transform_language_extension.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -2712,7 +2690,6 @@ "good/parameters/used_transform_removed.yaml": { "filePath": "good/parameters/used_transform_removed.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -2752,7 +2729,6 @@ "good/parameters/used_transforms.yaml": { "filePath": "good/parameters/used_transforms.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -2927,7 +2903,6 @@ "good/properties_ec2_vpc.yaml": { "filePath": "good/properties_ec2_vpc.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -3448,7 +3423,6 @@ "good/properties_rt_association.yaml": { "filePath": "good/properties_rt_association.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 6, "counts": { @@ -3760,7 +3734,6 @@ "good/redshift_private.yaml": { "filePath": "good/redshift_private.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -4095,7 +4068,6 @@ "good/redshift_valid_nodetype.yaml": { "filePath": "good/redshift_valid_nodetype.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4264,7 +4236,6 @@ "good/region_conditional_resource_type.yaml": { "filePath": "good/region_conditional_resource_type.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4364,7 +4335,6 @@ "good/resources/backup/test_backup_plan_lifecycle_rule.yml": { "filePath": "good/resources/backup/test_backup_plan_lifecycle_rule.yml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -4383,7 +4353,6 @@ "good/resources/cloudformation/nested_stack_dynamic.yaml": { "filePath": "good/resources/cloudformation/nested_stack_dynamic.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4423,7 +4392,6 @@ "good/resources/cloudformation/stack_nested.yaml": { "filePath": "good/resources/cloudformation/stack_nested.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -4492,7 +4460,6 @@ "good/resources/cloudformation/stacks.yaml": { "filePath": "good/resources/cloudformation/stacks.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -4868,7 +4835,6 @@ "good/resources/cloudfront/aliases.yaml": { "filePath": "good/resources/cloudfront/aliases.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -4908,7 +4874,6 @@ "good/resources/dynamodb/attributes.yaml": { "filePath": "good/resources/dynamodb/attributes.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -5084,7 +5049,6 @@ "good/resources/dynamodb/attributes_transform.yaml": { "filePath": "good/resources/dynamodb/attributes_transform.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -5474,7 +5438,6 @@ "good/resources/dynamodb/attributes_transform_object.yaml": { "filePath": "good/resources/dynamodb/attributes_transform_object.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -5730,7 +5693,6 @@ "good/resources/dynamodb/conditional_scenarios.yaml": { "filePath": "good/resources/dynamodb/conditional_scenarios.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -5844,7 +5806,6 @@ "good/resources/ecs/fargate_conditional_properties.yaml": { "filePath": "good/resources/ecs/fargate_conditional_properties.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -5863,7 +5824,6 @@ "good/resources/elasticache/cache_cluster_failover.yaml": { "filePath": "good/resources/elasticache/cache_cluster_failover.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 10, "counts": { @@ -6852,7 +6812,6 @@ "good/resources/iam/iam_policy_conditional_policies.yaml": { "filePath": "good/resources/iam/iam_policy_conditional_policies.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -6871,7 +6830,6 @@ "good/resources/iam/identity_policy_wildcard_partition.yaml": { "filePath": "good/resources/iam/identity_policy_wildcard_partition.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -6890,7 +6848,6 @@ "good/resources/iam/instance_profile.yaml": { "filePath": "good/resources/iam/instance_profile.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -7022,7 +6979,6 @@ "good/resources/iam/managed_policy_description.yaml": { "filePath": "good/resources/iam/managed_policy_description.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -7065,7 +7021,6 @@ "good/resources/iam/policy.yaml": { "filePath": "good/resources/iam/policy.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -7127,7 +7082,6 @@ "good/resources/iam/ref_with_path.yaml": { "filePath": "good/resources/iam/ref_with_path.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -7384,7 +7338,6 @@ "good/resources/iam/resource_policy.yaml": { "filePath": "good/resources/iam/resource_policy.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -7424,7 +7377,6 @@ "good/resources/lambda/required_properties.yaml": { "filePath": "good/resources/lambda/required_properties.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -7603,7 +7555,6 @@ "good/resources/name.yaml": { "filePath": "good/resources/name.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -7689,7 +7640,6 @@ "good/resources/primary_identifiers.yaml": { "filePath": "good/resources/primary_identifiers.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -8079,7 +8029,6 @@ "good/resources/properties/allowed_pattern.yaml": { "filePath": "good/resources/properties/allowed_pattern.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -8165,7 +8114,6 @@ "good/resources/properties/az_cdk.yaml": { "filePath": "good/resources/properties/az_cdk.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -8290,7 +8238,6 @@ "good/resources/properties/custom.yaml": { "filePath": "good/resources/properties/custom.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -8309,7 +8256,6 @@ "good/resources/properties/exclusive.yaml": { "filePath": "good/resources/properties/exclusive.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -8487,7 +8433,6 @@ "good/resources/properties/hard_coded_arn_properties.yaml": { "filePath": "good/resources/properties/hard_coded_arn_properties.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -8572,7 +8517,6 @@ "good/resources/properties/hard_coded_arn_properties_cdk.yaml": { "filePath": "good/resources/properties/hard_coded_arn_properties_cdk.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -8758,7 +8702,6 @@ "good/resources/properties/hard_coded_arn_properties_sam.yaml": { "filePath": "good/resources/properties/hard_coded_arn_properties_sam.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -8930,7 +8873,6 @@ "good/resources/properties/list_duplicates.yaml": { "filePath": "good/resources/properties/list_duplicates.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -9070,7 +9012,6 @@ "good/resources/properties/password.yaml": { "filePath": "good/resources/properties/password.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -9664,7 +9605,6 @@ "good/resources/properties/string_size.yaml": { "filePath": "good/resources/properties/string_size.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -9704,7 +9644,6 @@ "good/resources/properties/templated_code.yaml": { "filePath": "good/resources/properties/templated_code.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -9767,7 +9706,6 @@ "good/resources/properties/templated_code_sam.yaml": { "filePath": "good/resources/properties/templated_code_sam.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -9843,7 +9781,6 @@ "good/resources/rds/instance_sizes.yaml": { "filePath": "good/resources/rds/instance_sizes.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 6, "counts": { @@ -10523,7 +10460,6 @@ "good/resources/rds/not_enum_master_username_parameter.yaml": { "filePath": "good/resources/rds/not_enum_master_username_parameter.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -10589,7 +10525,6 @@ "good/resources/s3/access-control-obsolete.yaml": { "filePath": "good/resources/s3/access-control-obsolete.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -10694,7 +10629,6 @@ "good/resources/update_policy_supported.yaml": { "filePath": "good/resources/update_policy_supported.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -10954,7 +10888,6 @@ "good/resources_codepipeline.yaml": { "filePath": "good/resources_codepipeline.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -11036,7 +10969,6 @@ "good/resources_cognito_userpool_tag_is_string_map.yaml": { "filePath": "good/resources_cognito_userpool_tag_is_string_map.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -11092,7 +11024,6 @@ "good/resources_deletionpolicy.yaml": { "filePath": "good/resources_deletionpolicy.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -11223,7 +11154,6 @@ "good/resources_updatereplacepolicy.yaml": { "filePath": "good/resources_updatereplacepolicy.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -11354,7 +11284,6 @@ "good/route53_conditional_record_arrays.yaml": { "filePath": "good/route53_conditional_record_arrays.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 6, "counts": { @@ -11610,7 +11539,6 @@ "good/route53_conditional_record_items.yaml": { "filePath": "good/route53_conditional_record_items.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -11696,7 +11624,6 @@ "good/route53_conditional_scenarios.yaml": { "filePath": "good/route53_conditional_scenarios.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -11911,7 +11838,6 @@ "good/sam/api_stagename_valid.yaml": { "filePath": "good/sam/api_stagename_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -11951,7 +11877,6 @@ "good/sam/connector_valid.yaml": { "filePath": "good/sam/connector_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -12011,7 +11936,6 @@ "good/sam/function_deploymentpreference_with_alias.yaml": { "filePath": "good/sam/function_deploymentpreference_with_alias.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12051,7 +11975,6 @@ "good/sam/function_dlq_valid.yaml": { "filePath": "good/sam/function_dlq_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12091,7 +12014,6 @@ "good/sam/function_image_valid.yaml": { "filePath": "good/sam/function_image_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12131,7 +12053,6 @@ "good/sam/function_provisioned_concurrency_with_alias.yaml": { "filePath": "good/sam/function_provisioned_concurrency_with_alias.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12171,7 +12092,6 @@ "good/sam/function_runtime_handler_via_globals.yaml": { "filePath": "good/sam/function_runtime_handler_via_globals.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12211,7 +12131,6 @@ "good/sam/function_url_config_valid.yaml": { "filePath": "good/sam/function_url_config_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12251,7 +12170,6 @@ "good/sam/function_zip_valid.yaml": { "filePath": "good/sam/function_zip_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12291,7 +12209,6 @@ "good/sam/globals_all_valid_sections.yaml": { "filePath": "good/sam/globals_all_valid_sections.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12331,7 +12248,6 @@ "good/sam/globals_empty.yaml": { "filePath": "good/sam/globals_empty.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12371,7 +12287,6 @@ "good/sam/implicit_alias_ref.yaml": { "filePath": "good/sam/implicit_alias_ref.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -12431,7 +12346,6 @@ "good/sam/implicit_httpapi_ref.yaml": { "filePath": "good/sam/implicit_httpapi_ref.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -12511,7 +12425,6 @@ "good/sam/implicit_restapi_stage_ref.yaml": { "filePath": "good/sam/implicit_restapi_stage_ref.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -12571,7 +12484,6 @@ "good/sam/implicit_role_getatt_dependson.yaml": { "filePath": "good/sam/implicit_role_getatt_dependson.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -12651,7 +12563,6 @@ "good/sam/layerversion_valid_retention_and_arch.yaml": { "filePath": "good/sam/layerversion_valid_retention_and_arch.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12670,7 +12581,6 @@ "good/sam/simpletable_no_primarykey.yaml": { "filePath": "good/sam/simpletable_no_primarykey.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12746,7 +12656,6 @@ "good/sam/simpletable_valid.yaml": { "filePath": "good/sam/simpletable_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12822,7 +12731,6 @@ "good/sam/statemachine_definition_only.yaml": { "filePath": "good/sam/statemachine_definition_only.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -12880,7 +12788,6 @@ "good/schema_required_xor_resource_condition.yaml": { "filePath": "good/schema_required_xor_resource_condition.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -13036,7 +12943,6 @@ "good/schema_resource.yaml": { "filePath": "good/schema_resource.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -13055,7 +12961,6 @@ "good/schema_valid_resources.yaml": { "filePath": "good/schema_valid_resources.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -13137,7 +13042,6 @@ "good/simple_sub_prefix.yaml": { "filePath": "good/simple_sub_prefix.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -13200,7 +13104,6 @@ "good/some_logs_stream_lambda.yaml": { "filePath": "good/some_logs_stream_lambda.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -13712,7 +13615,6 @@ "good/sqs_fifo_valid.yaml": { "filePath": "good/sqs_fifo_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -13853,7 +13755,6 @@ "good/ssm_document_valid.yaml": { "filePath": "good/ssm_document_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -13939,7 +13840,6 @@ "good/ssm_parameter_name_type.yaml": { "filePath": "good/ssm_parameter_name_type.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { diff --git a/src/resources/expected/validation_reports7.json b/src/resources/expected/validation_reports7.json index 653df9fe..8a8ca656 100644 --- a/src/resources/expected/validation_reports7.json +++ b/src/resources/expected/validation_reports7.json @@ -2,7 +2,6 @@ "good/stackset_conditional_template_source.yaml": { "filePath": "good/stackset_conditional_template_source.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -68,7 +67,6 @@ "good/stepfunctions_valid.yaml": { "filePath": "good/stepfunctions_valid.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -127,7 +125,6 @@ "good/string_length_unknowable_values.json": { "filePath": "good/string_length_unknowable_values.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -339,7 +336,6 @@ "good/sub_not_needed.yaml": { "filePath": "good/sub_not_needed.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -402,7 +398,6 @@ "good/transform.yaml": { "filePath": "good/transform.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -498,7 +493,6 @@ "good/transform/applications_location.yaml": { "filePath": "good/transform/applications_location.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -630,7 +624,6 @@ "good/transform/auto_publish_alias.yaml": { "filePath": "good/transform/auto_publish_alias.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -690,7 +683,6 @@ "good/transform/auto_publish_code_sha256.yaml": { "filePath": "good/transform/auto_publish_code_sha256.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -730,7 +722,6 @@ "good/transform/function_use_s3_uri.yaml": { "filePath": "good/transform/function_use_s3_uri.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -770,7 +761,6 @@ "good/transform/function_using_image.yaml": { "filePath": "good/transform/function_using_image.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -810,7 +800,6 @@ "good/transform/include_object_form.yaml": { "filePath": "good/transform/include_object_form.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -829,7 +818,6 @@ "good/transform/language_extension.yaml": { "filePath": "good/transform/language_extension.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -1174,7 +1162,6 @@ "good/transform/list_transform.yaml": { "filePath": "good/transform/list_transform.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1214,7 +1201,6 @@ "good/transform/list_transform_many.yaml": { "filePath": "good/transform/list_transform_many.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1254,7 +1240,6 @@ "good/transform/list_transform_not_sam.yaml": { "filePath": "good/transform/list_transform_not_sam.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1312,7 +1297,6 @@ "good/transform/step_function_local_definition.yaml": { "filePath": "good/transform/step_function_local_definition.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1352,7 +1336,6 @@ "good/transform_serverless_api.yaml": { "filePath": "good/transform_serverless_api.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -1412,7 +1395,6 @@ "good/transform_serverless_auto_publish_alias.yaml": { "filePath": "good/transform_serverless_auto_publish_alias.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -1472,7 +1454,6 @@ "good/transform_serverless_function.yaml": { "filePath": "good/transform_serverless_function.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -1552,7 +1533,6 @@ "good/transform_serverless_globals.yaml": { "filePath": "good/transform_serverless_globals.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -1615,7 +1595,6 @@ "good/transform_serverless_ignore_globals.yaml": { "filePath": "good/transform_serverless_ignore_globals.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -1718,7 +1697,6 @@ "good/transform_serverless_ignore_globals_supported_runtime.yaml": { "filePath": "good/transform_serverless_ignore_globals_supported_runtime.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -1798,7 +1776,6 @@ "good/unique_items_deploy_time_values.json": { "filePath": "good/unique_items_deploy_time_values.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -1878,7 +1855,6 @@ "good/unknown_resource_types_ignored.yaml": { "filePath": "good/unknown_resource_types_ignored.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -1897,7 +1873,6 @@ "good/vpc_subnets.yaml": { "filePath": "good/vpc_subnets.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -2216,7 +2191,6 @@ "integration/availability-zones.yaml": { "filePath": "integration/availability-zones.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -2388,7 +2362,6 @@ "integration/aws-dynamodb-table.yaml": { "filePath": "integration/aws-dynamodb-table.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -2667,7 +2640,6 @@ "integration/aws-ec2-instance.yaml": { "filePath": "integration/aws-ec2-instance.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -2900,7 +2872,6 @@ "integration/aws-ec2-launchtemplate.yaml": { "filePath": "integration/aws-ec2-launchtemplate.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -3050,7 +3021,6 @@ "integration/aws-ec2-networkinterface.yaml": { "filePath": "integration/aws-ec2-networkinterface.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -3160,7 +3130,6 @@ "integration/aws-ec2-subnet.yaml": { "filePath": "integration/aws-ec2-subnet.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -3674,7 +3643,6 @@ "integration/aws-lambda-function.yaml": { "filePath": "integration/aws-lambda-function.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -3734,7 +3702,6 @@ "integration/cfn-gather.yaml": { "filePath": "integration/cfn-gather.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 17, "counts": { @@ -5060,7 +5027,6 @@ "integration/custom-resources.yaml": { "filePath": "integration/custom-resources.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -5142,7 +5108,6 @@ "integration/deployment-file-template.yaml": { "filePath": "integration/deployment-file-template.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 3, "counts": { @@ -5438,7 +5403,6 @@ "integration/dynamic-references.yaml": { "filePath": "integration/dynamic-references.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -5736,7 +5700,6 @@ "integration/formats.yaml": { "filePath": "integration/formats.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -6148,7 +6111,6 @@ "integration/get-stack-output.yaml": { "filePath": "integration/get-stack-output.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -6306,7 +6268,6 @@ "integration/getatt-types.yaml": { "filePath": "integration/getatt-types.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -6841,7 +6802,6 @@ "integration/metdata.yaml": { "filePath": "integration/metdata.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -6892,7 +6852,6 @@ "integration/module-sub-resources.yaml": { "filePath": "integration/module-sub-resources.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -6911,7 +6870,6 @@ "integration/ref-no-value.yaml": { "filePath": "integration/ref-no-value.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -7111,7 +7069,6 @@ "integration/ref-types.yaml": { "filePath": "integration/ref-types.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 13, "counts": { @@ -8053,7 +8010,6 @@ "integration/resources-cloudformation-init.yaml": { "filePath": "integration/resources-cloudformation-init.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -8153,7 +8109,6 @@ "issues/sam_w_conditions.yaml": { "filePath": "issues/sam_w_conditions.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 17, "counts": { @@ -8978,7 +8933,6 @@ "lsp/comprehensive.json": { "filePath": "lsp/comprehensive.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 12, "counts": { @@ -9897,7 +9851,6 @@ "lsp/comprehensive.yaml": { "filePath": "lsp/comprehensive.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 12, "counts": { @@ -10844,7 +10797,6 @@ "lsp/condition-usage.json": { "filePath": "lsp/condition-usage.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 4, "counts": { @@ -11260,7 +11212,6 @@ "lsp/condition-usage.yaml": { "filePath": "lsp/condition-usage.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 8, "counts": { @@ -11981,7 +11932,6 @@ "lsp/constants.json": { "filePath": "lsp/constants.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -12161,7 +12111,6 @@ "lsp/constants.yaml": { "filePath": "lsp/constants.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -12341,7 +12290,6 @@ "lsp/parameter_usage.json": { "filePath": "lsp/parameter_usage.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -12643,7 +12591,6 @@ "lsp/parameter_usage.yaml": { "filePath": "lsp/parameter_usage.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 7, "counts": { @@ -13029,7 +12976,6 @@ "lsp/simple.json": { "filePath": "lsp/simple.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -13069,7 +13015,6 @@ "lsp/simple.yaml": { "filePath": "lsp/simple.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -13109,7 +13054,6 @@ "lsp/test-template.yaml": { "filePath": "lsp/test-template.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -13205,7 +13149,6 @@ "malformed.yaml": { "filePath": "malformed.yaml", "status": "ERROR", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -13238,7 +13181,6 @@ "public/lambda-poller.json": { "filePath": "public/lambda-poller.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -13477,7 +13419,6 @@ "public/lambda-poller.yaml": { "filePath": "public/lambda-poller.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -13716,7 +13657,6 @@ "public/rds-cluster.yaml": { "filePath": "public/rds-cluster.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -13924,7 +13864,6 @@ "public/watchmaker.json": { "filePath": "public/watchmaker.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -14744,7 +14683,6 @@ "quickstart/cis_benchmark.yaml": { "filePath": "quickstart/cis_benchmark.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 79, "counts": { @@ -19433,7 +19371,6 @@ "quickstart/config-rules.json": { "filePath": "quickstart/config-rules.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 12, "counts": { @@ -19929,7 +19866,6 @@ "quickstart/iam.json": { "filePath": "quickstart/iam.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 18, "counts": { @@ -20215,7 +20151,6 @@ "quickstart/nat-instance.json": { "filePath": "quickstart/nat-instance.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -20596,7 +20531,6 @@ "quickstart/nist_application.yaml": { "filePath": "quickstart/nist_application.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 28, "counts": { @@ -23855,7 +23789,6 @@ "quickstart/nist_config_rules.yaml": { "filePath": "quickstart/nist_config_rules.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 12, "counts": { @@ -24351,7 +24284,6 @@ "quickstart/nist_high_main.yaml": { "filePath": "quickstart/nist_high_main.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 6, "counts": { @@ -25514,7 +25446,6 @@ "quickstart/nist_iam.yaml": { "filePath": "quickstart/nist_iam.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 18, "counts": { @@ -25800,7 +25731,6 @@ "quickstart/nist_logging.yaml": { "filePath": "quickstart/nist_logging.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 24, "counts": { @@ -27400,7 +27330,6 @@ "quickstart/nist_vpc_management.yaml": { "filePath": "quickstart/nist_vpc_management.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 33, "counts": { @@ -29673,7 +29602,6 @@ "quickstart/nist_vpc_production.yaml": { "filePath": "quickstart/nist_vpc_production.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 46, "counts": { @@ -33242,7 +33170,6 @@ "quickstart/openshift.yaml": { "filePath": "quickstart/openshift.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 19, "counts": { @@ -35673,7 +35600,6 @@ "quickstart/openshift_master.yaml": { "filePath": "quickstart/openshift_master.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { @@ -35805,7 +35731,6 @@ "quickstart/test.yaml": { "filePath": "quickstart/test.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 5, "counts": { @@ -36117,7 +36042,6 @@ "quickstart/vpc-management.json": { "filePath": "quickstart/vpc-management.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 33, "counts": { @@ -38408,7 +38332,6 @@ "quickstart/vpc.json": { "filePath": "quickstart/vpc.json", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 77, "counts": { @@ -43386,7 +43309,6 @@ "security/combined_conditions.yaml": { "filePath": "security/combined_conditions.yaml", "status": "ANALYSIS_INCOMPLETE", - "version": "1.10.0", "metadata": { "resourcesScanned": 20, "counts": { @@ -45748,7 +45670,6 @@ "security/condition_chain_boundary.yaml": { "filePath": "security/condition_chain_boundary.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 10, "counts": { @@ -46778,7 +46699,6 @@ "security/condition_chain_wide.yaml": { "filePath": "security/condition_chain_wide.yaml", "status": "ANALYSIS_INCOMPLETE", - "version": "1.10.0", "metadata": { "resourcesScanned": 10, "counts": { @@ -48051,7 +47971,6 @@ "security/condition_fusion.yaml": { "filePath": "security/condition_fusion.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 20, "counts": { @@ -50519,7 +50438,6 @@ "security/cross_resource_scale.yaml": { "filePath": "security/cross_resource_scale.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 500, "counts": { @@ -81539,7 +81457,6 @@ "security/deep_intrinsic_resolution.yaml": { "filePath": "security/deep_intrinsic_resolution.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -82800,7 +82717,6 @@ "security/deep_nesting.json": { "filePath": "security/deep_nesting.json", "status": "ERROR", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -82833,7 +82749,6 @@ "security/deep_yaml_nesting.yaml": { "filePath": "security/deep_yaml_nesting.yaml", "status": "ERROR", - "version": "1.10.0", "metadata": { "resourcesScanned": 0, "counts": { @@ -82866,7 +82781,6 @@ "security/foreach_branch_explosion.yaml": { "filePath": "security/foreach_branch_explosion.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -82905,7 +82819,6 @@ "security/many_conditions.yaml": { "filePath": "security/many_conditions.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -88762,7 +88675,6 @@ "security/many_resources.yaml": { "filePath": "security/many_resources.yaml", "status": "OK", - "version": "1.10.0", "metadata": { "resourcesScanned": 500, "counts": { @@ -98782,7 +98694,6 @@ "security/pathological_conditions.yaml": { "filePath": "security/pathological_conditions.yaml", "status": "ANALYSIS_INCOMPLETE", - "version": "1.10.0", "metadata": { "resourcesScanned": 1, "counts": { @@ -101306,7 +101217,6 @@ "security/scenario_assignment_budget.yaml": { "filePath": "security/scenario_assignment_budget.yaml", "status": "ANALYSIS_INCOMPLETE", - "version": "1.10.0", "metadata": { "resourcesScanned": 2, "counts": { diff --git a/src/resources/expected/version.txt b/src/resources/expected/version.txt new file mode 100644 index 00000000..f8e233b2 --- /dev/null +++ b/src/resources/expected/version.txt @@ -0,0 +1 @@ +1.9.0