File tree 2 files changed +12
-0
lines changed
src/cfnlint/data/schemas/extensions/aws_rds_dbcluster
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,12 @@ def write_db_cluster(results):
85
85
if sub_engine_version not in engine_versions :
86
86
engine_versions .append (sub_engine_version )
87
87
engine_versions = sorted (engine_versions )
88
+ if engine == "aurora-postgresql" :
89
+ for engine_version in engine_versions .copy ():
90
+ sub_engine_version = engine_version .split ("." )[0 ]
91
+ if sub_engine_version not in engine_versions :
92
+ engine_versions .append (sub_engine_version )
93
+ engine_versions = sorted (engine_versions )
88
94
89
95
schema ["allOf" ].append (
90
96
{
Original file line number Diff line number Diff line change 100
100
"properties" : {
101
101
"EngineVersion" : {
102
102
"enum" : [
103
+ " 11" ,
103
104
" 11.21" ,
104
105
" 11.9" ,
106
+ " 12" ,
105
107
" 12.15" ,
106
108
" 12.16" ,
107
109
" 12.17" ,
110
112
" 12.20" ,
111
113
" 12.22" ,
112
114
" 12.9" ,
115
+ " 13" ,
113
116
" 13.11" ,
114
117
" 13.12" ,
115
118
" 13.13" ,
118
121
" 13.16" ,
119
122
" 13.18" ,
120
123
" 13.9" ,
124
+ " 14" ,
121
125
" 14.10" ,
122
126
" 14.11" ,
123
127
" 14.12" ,
126
130
" 14.6" ,
127
131
" 14.8" ,
128
132
" 14.9" ,
133
+ " 15" ,
129
134
" 15.10" ,
130
135
" 15.3" ,
131
136
" 15.4" ,
132
137
" 15.5" ,
133
138
" 15.6" ,
134
139
" 15.7" ,
135
140
" 15.8" ,
141
+ " 16" ,
136
142
" 16.1" ,
137
143
" 16.2" ,
138
144
" 16.3" ,
You can’t perform that action at this time.
0 commit comments