Skip to content

Commit 5c68a3f

Browse files
authored
Merge pull request #328 from citizensadvice/CLOUD-809_EOL_aurora_clone_lambda_versions
CLOUD-809: chore(aurora clone lambda) update from python 3.10 to 3.14
2 parents baf7799 + f7275e9 commit 5c68a3f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

ca_cdk_constructs/storage/aurora_clone_refresh.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def __init__(
119119
cluster_clone_lambda = Function(
120120
self,
121121
"AuroraCloneLambda",
122-
runtime=Runtime.PYTHON_3_10,
122+
runtime=Runtime.PYTHON_3_14,
123123
timeout=Duration.minutes(15),
124124
code=self.lambda_source_code("aurora_clone.py"),
125125
handler="index.lambda_handler",
@@ -167,7 +167,7 @@ def __init__(
167167
cluster_status_lambda = Function(
168168
self,
169169
"AuroraStatusCheckLambda",
170-
runtime=Runtime.PYTHON_3_10,
170+
runtime=Runtime.PYTHON_3_14,
171171
timeout=Duration.minutes(15),
172172
code=self.lambda_source_code("aurora_check_status.py"),
173173
handler="index.lambda_handler",
@@ -183,7 +183,7 @@ def __init__(
183183
aurora_delete_clone_lambda = Function(
184184
self,
185185
"AuroraDeleteClusterLambda",
186-
runtime=Runtime.PYTHON_3_10,
186+
runtime=Runtime.PYTHON_3_14,
187187
timeout=Duration.minutes(15),
188188
code=self.lambda_source_code("aurora_delete_clone.py"),
189189
handler="index.lambda_handler",

ca_cdk_constructs/storage/modify_db_cluster_password.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __init__(self, scope: Construct, id: str, cluster_id: str, secret: Secret) -
7979
self.lambda_funct = Function(
8080
self,
8181
"ModifyDBClusterPasswordLambda",
82-
runtime=Runtime.PYTHON_3_10,
82+
runtime=Runtime.PYTHON_3_14,
8383
timeout=Duration.minutes(15),
8484
code=Code.from_inline(lambda_code),
8585
handler="index.handler",

0 commit comments

Comments
 (0)