@jaypie/constructs 1.2.56 → 1.2.58
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/README.md +9 -0
- package/dist/cjs/index.cjs +9 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.js +9 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
ADDED
package/dist/cjs/index.cjs
CHANGED
|
@@ -1022,7 +1022,12 @@ class JaypieEnvSecret extends constructs.Construct {
|
|
|
1022
1022
|
this._envKey = envKey;
|
|
1023
1023
|
let exportName;
|
|
1024
1024
|
if (!exportParam) {
|
|
1025
|
-
|
|
1025
|
+
// When shorthand detection is active, use the full construct id (which
|
|
1026
|
+
// includes the "EnvSecret_" prefix) so the export name matches what was
|
|
1027
|
+
// produced by earlier versions of this construct. Using the raw envKey
|
|
1028
|
+
// here produces a shorter name that breaks existing cross-stack imports.
|
|
1029
|
+
const exportSource = treatAsEnvKey ? id : envKey || id;
|
|
1030
|
+
exportName = exportEnvName$1(exportSource, process.env, consumer);
|
|
1026
1031
|
}
|
|
1027
1032
|
else {
|
|
1028
1033
|
exportName = cleanName$1(exportParam);
|
|
@@ -4199,6 +4204,9 @@ class JaypieSsoPermissions extends constructs.Construct {
|
|
|
4199
4204
|
{
|
|
4200
4205
|
Effect: "Allow",
|
|
4201
4206
|
Action: [
|
|
4207
|
+
"bedrock-agent:*",
|
|
4208
|
+
"bedrock-agentcore:*",
|
|
4209
|
+
"bedrock:*",
|
|
4202
4210
|
"budgets:*",
|
|
4203
4211
|
"ce:*",
|
|
4204
4212
|
"cloudformation:*",
|