Skip to content

Commit 5298928

Browse files
Bump Python Layer version to 95, Node Layer version to 112, and Extension Layer version to 58 (#5)
* bump python layer version to 95 and node layer version to 112 * bump extension layer version to 58
1 parent 140c801 commit 5298928

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ module "example_lambda_function" {
3131
"DD_VERSION" : "1.0.0"
3232
}
3333
34-
datadog_extension_layer_version = 57
35-
datadog_python_layer_version = 94
34+
datadog_extension_layer_version = 58
35+
datadog_python_layer_version = 95
3636
}
3737
```
3838

@@ -55,8 +55,8 @@ module "example_lambda_function" {
5555
"DD_VERSION" : "1.0.0"
5656
}
5757
58-
datadog_extension_layer_version = 57
59-
datadog_node_layer_version = 109
58+
datadog_extension_layer_version = 58
59+
datadog_node_layer_version = 112
6060
}
6161
```
6262

@@ -158,9 +158,9 @@ No modules.
158158
|------|-------------|------|---------|:--------:|
159159
| <a name="input_architectures"></a> [architectures](#input\_architectures) | Instruction set architecture for your Lambda function. Valid values are ["x86\_64"] and ["arm64"]. | `list(string)` | <pre>["x86_64"]</pre> | no |
160160
| <a name="input_code_signing_config_arn"></a> [code\_signing\_config\_arn](#input\_code\_signing\_config\_arn) | To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration includes a set of signing profiles, which define the trusted publishers for this function. | `string` | `null` | no |
161-
| <a name="input_datadog_extension_layer_version"></a> [datadog\_extension\_layer\_version](#input\_datadog\_extension\_layer\_version) | Version for the Datadog Extension Layer | `number` | `57` | no |
162-
| <a name="input_datadog_node_layer_version"></a> [datadog\_node\_layer\_version](#input\_datadog\_node\_layer\_version) | Version for the Datadog Node Layer | `number` | `109` | no |
163-
| <a name="input_datadog_python_layer_version"></a> [datadog\_python\_layer\_version](#input\_datadog\_python\_layer\_version) | Version for the Datadog Python Layer | `number` | `94` | no |
161+
| <a name="input_datadog_extension_layer_version"></a> [datadog\_extension\_layer\_version](#input\_datadog\_extension\_layer\_version) | Version for the Datadog Extension Layer | `number` | `58` | no |
162+
| <a name="input_datadog_node_layer_version"></a> [datadog\_node\_layer\_version](#input\_datadog\_node\_layer\_version) | Version for the Datadog Node Layer | `number` | `112` | no |
163+
| <a name="input_datadog_python_layer_version"></a> [datadog\_python\_layer\_version](#input\_datadog\_python\_layer\_version) | Version for the Datadog Python Layer | `number` | `95` | no |
164164
| <a name="input_dead_letter_config_target_arn"></a> [dead\_letter\_config\_target\_arn](#input\_dead\_letter\_config\_target\_arn) | ARN of an SNS topic or SQS queue to notify when an invocation fails. | `string` | `null` | no |
165165
| <a name="input_description"></a> [description](#input\_description) | Description of what your Lambda Function does. | `string` | `null` | no |
166166
| <a name="input_environment_variables"></a> [environment\_variables](#input\_environment\_variables) | Map of environment variables that are accessible from the function code during execution. | `map(string)` | `{}` | no |

variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55
variable "datadog_extension_layer_version" {
66
description = "Version for the Datadog Extension Layer"
77
type = number
8-
default = 57
8+
default = 58
99
}
1010

1111
variable "datadog_node_layer_version" {
1212
description = "Version for the Datadog Node Layer"
1313
type = number
14-
default = 109
14+
default = 112
1515
}
1616

1717
variable "datadog_python_layer_version" {
1818
description = "Version for the Datadog Python Layer"
1919
type = number
20-
default = 94
20+
default = 95
2121
}
2222

2323

0 commit comments

Comments
 (0)