@reventlessdev/rescript-pulumi-aws 3.0.0-alpha.2 → 3.0.0-alpha.3
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
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
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
|
+
# 3.0.0-alpha.3 (2026-08-23)
|
|
7
|
+
|
|
8
|
+
* feat(aws)!: scope the active-role store to the identity provider ([08e287d](https://github.com/ReventlessDev/reventless-core/commit/08e287db9721977b818bad76671ec4c62be6f9af))
|
|
9
|
+
|
|
10
|
+
### BREAKING CHANGES
|
|
11
|
+
|
|
12
|
+
* platform:cognitoUserPoolId is now
|
|
13
|
+
platform:identityProviderId (REVENTLESS_IDENTITY_PROVIDER_ID). The old
|
|
14
|
+
spelling is still read and warns — do not drop it until the new secret
|
|
15
|
+
is in place, because an unset provider id is auto mode, and auto mode
|
|
16
|
+
creates a new user pool.
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
6
20
|
# 3.0.0-alpha.2 (2026-08-21)
|
|
7
21
|
|
|
8
22
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/rescript-pulumi-aws",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.3",
|
|
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-rc.2",
|
|
25
|
-
"@reventlessdev/rescript-aws-sdk": "3.0.0-alpha.
|
|
25
|
+
"@reventlessdev/rescript-aws-sdk": "3.0.0-alpha.13",
|
|
26
26
|
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.19"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
@@ -66,3 +66,26 @@ type args = {
|
|
|
66
66
|
@module("@pulumi/aws") @scope("dynamodb") @new
|
|
67
67
|
external make: (~name: string, ~args: args, ~opts: Pulumi.CustomResourceOptions.t=?) => table =
|
|
68
68
|
"Table"
|
|
69
|
+
|
|
70
|
+
/** Look up a table this stack does not own.
|
|
71
|
+
|
|
72
|
+
In a submodule because the lookup result's fields are a subset of [t]'s: at
|
|
73
|
+
file level the later record would win inference for `{id, name, arn}` and
|
|
74
|
+
silently retype every such destructuring of a real table.
|
|
75
|
+
|
|
76
|
+
The lookup fails the deploy when the table does not exist, which is the point —
|
|
77
|
+
a name that resolves to nothing would otherwise reach a Lambda's environment
|
|
78
|
+
and surface at sign-in. */
|
|
79
|
+
module Get = {
|
|
80
|
+
type args = {name: string}
|
|
81
|
+
|
|
82
|
+
type result = {
|
|
83
|
+
arn: string,
|
|
84
|
+
id: string,
|
|
85
|
+
name: string,
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@module("@pulumi/aws") @scope("dynamodb") @val
|
|
89
|
+
external output: (~args: args, ~opts: Pulumi.InvokeOptions.t=?) => Pulumi.Output.t<result> =
|
|
90
|
+
"getTableOutput"
|
|
91
|
+
}
|