forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDbClusterEngineVersionDeprecated.py
More file actions
38 lines (32 loc) · 1.39 KB
/
DbClusterEngineVersionDeprecated.py
File metadata and controls
38 lines (32 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from __future__ import annotations
import cfnlint.data.schemas.extensions.aws_rds_dbcluster
from cfnlint.rules.jsonschema.CfnLintJsonSchema import CfnLintJsonSchema, SchemaDetails
class DbClusterEngineVersionDeprecated(CfnLintJsonSchema):
id = "W3690"
shortdesc = "Validate DB Cluster Engine Version is not deprecated"
description = (
"Validate the DB Cluster engine version is not deprecated and can be "
"used to create new instances"
)
tags = ["resources"]
source_url = "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion"
def __init__(self) -> None:
super().__init__(
keywords=["Resources/AWS::RDS::DBCluster/Properties"],
schema_details=SchemaDetails(
module=cfnlint.data.schemas.extensions.aws_rds_dbcluster,
filename="engine_version_deprecated.json",
),
all_matches=False,
)
def message(self, instance, err):
engine = instance.get("Engine", "")
engine_version = instance.get("EngineVersion", "")
return (
f"Engine version '{engine_version}' for engine '{engine}' is "
f"deprecated and cannot be used to create new RDS DB clusters"
)