forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReplicationGroupValkeyTransitEncryption.py
More file actions
29 lines (24 loc) · 1.17 KB
/
ReplicationGroupValkeyTransitEncryption.py
File metadata and controls
29 lines (24 loc) · 1.17 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
"""
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_elasticache_replicationgroup
from cfnlint.rules.jsonschema.CfnLintJsonSchema import CfnLintJsonSchema, SchemaDetails
class ReplicationGroupValkeyTransitEncryption(CfnLintJsonSchema):
id = "E3704"
shortdesc = "Validate TransitEncryptionEnabled is set when using Valkey engine"
description = (
"When Engine is valkey, TransitEncryptionEnabled must be explicitly set"
)
tags = ["resources", "elasticache"]
source_url = "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled"
def __init__(self) -> None:
super().__init__(
keywords=["Resources/AWS::ElastiCache::ReplicationGroup/Properties"],
schema_details=SchemaDetails(
module=cfnlint.data.schemas.extensions.aws_elasticache_replicationgroup,
filename="transitencryptionenabled_valkey.json",
),
all_matches=True,
)