Skip to content

Commit ff53a14

Browse files
committed
feat(terraform): bump python lambda runtime to 3.13
Updated the default runtime for the Lambda function from "python3.10" to "python3.13".
1 parent 586f0de commit ff53a14

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ No modules.
139139
| <a name="input_rds_schedule"></a> [rds\_schedule](#input\_rds\_schedule) | Enable scheduling on rds resources | `any` | `false` | no |
140140
| <a name="input_redshift_schedule"></a> [redshift\_schedule](#input\_redshift\_schedule) | Enable scheduling on redshift resources | `any` | `false` | no |
141141
| <a name="input_resources_tag"></a> [resources\_tag](#input\_resources\_tag) | DEPRECATED, use scheduler\_tag variable instead | `map(string)` | `null` | no |
142-
| <a name="input_runtime"></a> [runtime](#input\_runtime) | The runtime environment for the Lambda function that you are uploading. For example, python3.8 | `string` | `"python3.10"` | no |
142+
| <a name="input_runtime"></a> [runtime](#input\_runtime) | The runtime environment for the Lambda function that you are uploading | `string` | `"python3.13"` | no |
143143
| <a name="input_schedule_action"></a> [schedule\_action](#input\_schedule\_action) | Define schedule action to apply on resources, accepted value are 'stop or 'start | `string` | `"stop"` | no |
144144
| <a name="input_scheduler_tag"></a> [scheduler\_tag](#input\_scheduler\_tag) | Set the tag to use for identify aws resources to stop or start | `map(string)` | <pre>{<br/> "key": "tostop",<br/> "value": "true"<br/>}</pre> | no |
145145
| <a name="input_tags"></a> [tags](#input\_tags) | Custom tags on aws resources | `map(any)` | `null` | no |

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ variable "aws_regions" {
3333
}
3434

3535
variable "runtime" {
36-
description = "The runtime environment for the Lambda function that you are uploading. For example, python3.8"
36+
description = "The runtime environment for the Lambda function that you are uploading"
3737
type = string
38-
default = "python3.10"
38+
default = "python3.13"
3939
}
4040

4141
variable "schedule_action" {

0 commit comments

Comments
 (0)