Skip to content

Commit c79124f

Browse files
authored
Default EngineMode for E3686 is provisioned (#3425)
1 parent 3b782cb commit c79124f

File tree

2 files changed

+2
-22
lines changed

2 files changed

+2
-22
lines changed

src/cfnlint/data/schemas/extensions/aws_rds_dbcluster/serverless_exclusive.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@
4646
},
4747
"then": {
4848
"properties": {
49-
"ScalingConfiguration": false,
50-
"ServerlessV2ScalingConfiguration": false
49+
"ScalingConfiguration": false
5150
}
5251
}
5352
}

test/unit/rules/resources/rds/test_db_cluster_serverless_exclusive.py

+1-20
Original file line numberDiff line numberDiff line change
@@ -76,26 +76,7 @@ def rule():
7676
),
7777
(
7878
{"ServerlessV2ScalingConfiguration": "foo"},
79-
[
80-
ValidationError(
81-
(
82-
"Additional properties are not allowed "
83-
"('ServerlessV2ScalingConfiguration')"
84-
),
85-
rule=DbClusterServerlessExclusive(),
86-
path=deque(["ServerlessV2ScalingConfiguration"]),
87-
validator=None,
88-
schema_path=deque(
89-
[
90-
"allOf",
91-
2,
92-
"then",
93-
"properties",
94-
"ServerlessV2ScalingConfiguration",
95-
]
96-
),
97-
)
98-
],
79+
[],
9980
),
10081
(
10182
{"ScalingConfiguration": "foo"},

0 commit comments

Comments
 (0)