@reventlessdev/rescript-pulumi-aws 2.4.0-alpha.66 → 2.4.0-alpha.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/package.json +2 -2
- package/src/Lambda/Lambda.res +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 2.4.0-alpha.68 (2026-08-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @reventlessdev/rescript-pulumi-aws
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# 2.4.0-alpha.67 (2026-08-08)
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **aws:** create a Lambda's log group before the function that writes to it ([8d1e459](https://github.com/ReventlessDev/reventless-core/commit/8d1e4591127489d2ae8e84e7ade3843a1a859eb6))
|
|
19
|
+
|
|
20
|
+
|
|
6
21
|
# 2.4.0-alpha.66 (2026-08-05)
|
|
7
22
|
|
|
8
23
|
**Note:** Version bump only for package @reventlessdev/rescript-pulumi-aws
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/rescript-pulumi-aws",
|
|
3
|
-
"version": "2.4.0-alpha.
|
|
3
|
+
"version": "2.4.0-alpha.68",
|
|
4
4
|
"description": "ReScript bindings for @pulumi/aws",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"jest": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@pulumi/aws": "~7.19.0",
|
|
23
23
|
"@pulumi/aws-native": "^1.62.0",
|
|
24
24
|
"sury": "11.0.0-alpha.4",
|
|
25
|
-
"@reventlessdev/rescript-aws-sdk": "3.0.0-alpha.
|
|
25
|
+
"@reventlessdev/rescript-aws-sdk": "3.0.0-alpha.5",
|
|
26
26
|
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.18"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
package/src/Lambda/Lambda.res
CHANGED
|
@@ -215,6 +215,22 @@ module Function = {
|
|
|
215
215
|
securityGroupIds: Pulumi.Input.t<array<Pulumi.Input.t<string>>>,
|
|
216
216
|
}
|
|
217
217
|
|
|
218
|
+
/** Advanced Logging Controls. Naming `logGroup` here is what lets a deploy own
|
|
219
|
+
the group: the function writes to a group the program created, so Lambda
|
|
220
|
+
never lazily auto-creates `/aws/lambda/<physical name>` on first invocation
|
|
221
|
+
and there is no window in which the two can race.
|
|
222
|
+
|
|
223
|
+
`logFormat` is required by the provider. `Text` is AWS's own default and
|
|
224
|
+
leaves the emitted lines byte-identical; `JSON` wraps every application line
|
|
225
|
+
in an envelope, and is the only mode in which `applicationLogLevel` /
|
|
226
|
+
`systemLogLevel` apply. */
|
|
227
|
+
type loggingConfig = {
|
|
228
|
+
logFormat: Pulumi.Input.t<string>,
|
|
229
|
+
logGroup?: Pulumi.Input.t<string>,
|
|
230
|
+
applicationLogLevel?: Pulumi.Input.t<string>,
|
|
231
|
+
systemLogLevel?: Pulumi.Input.t<string>,
|
|
232
|
+
}
|
|
233
|
+
|
|
218
234
|
type args = {
|
|
219
235
|
handler?: Pulumi.Input.t<string>,
|
|
220
236
|
runtime?: Pulumi.Input.t<string>,
|
|
@@ -229,6 +245,7 @@ module Function = {
|
|
|
229
245
|
reservedConcurrentExecutions?: Pulumi.Input.t<int>,
|
|
230
246
|
ephemeralStorage?: Pulumi.Input.t<ephemeralStorage>,
|
|
231
247
|
vpcConfig?: Pulumi.Input.t<vpcConfig>,
|
|
248
|
+
loggingConfig?: Pulumi.Input.t<loggingConfig>,
|
|
232
249
|
}
|
|
233
250
|
|
|
234
251
|
type t = {
|