@fjall/components-infrastructure 31.0.0 → 32.0.0
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.
|
@@ -11,7 +11,12 @@ export class FivetranProxy extends Stack {
|
|
|
11
11
|
serviceName: "fivetranProxy",
|
|
12
12
|
vpc: props.vpc,
|
|
13
13
|
instanceType: props.instanceType || "t2.micro",
|
|
14
|
-
|
|
14
|
+
// Not a caller's choice. This proxy exists so Fivetran can reach a
|
|
15
|
+
// private database over SSH — it provisions the `fivetran` user and its
|
|
16
|
+
// authorized_keys above — so the instance must be publicly reachable on
|
|
17
|
+
// port 22. The prop that used to sit here was `props.enableSSH || true`,
|
|
18
|
+
// which accepted a `false` it could never honour.
|
|
19
|
+
enableSSH: true,
|
|
15
20
|
env: {
|
|
16
21
|
account: props.env?.account,
|
|
17
22
|
region: props.env?.region
|
|
@@ -162,7 +162,7 @@ export interface PatternLambdaConfig {
|
|
|
162
162
|
memorySize?: number;
|
|
163
163
|
/** Timeout in seconds. Range: 1-900. */
|
|
164
164
|
timeout?: number;
|
|
165
|
-
/** Ephemeral storage size in
|
|
165
|
+
/** Ephemeral storage size in MiB. Range: 512-10240. Default: 512. */
|
|
166
166
|
ephemeralStorageSize?: number;
|
|
167
167
|
}
|
|
168
168
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fjall/components-infrastructure",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "32.0.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/fjall-tech/fjall.git",
|
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
80
|
"@aws-sdk/client-organizations": "^3.1098.0",
|
|
81
|
-
"@fjall/generator": "^
|
|
82
|
-
"@fjall/util": "^
|
|
81
|
+
"@fjall/generator": "^32.0.0",
|
|
82
|
+
"@fjall/util": "^32.0.0",
|
|
83
83
|
"constructs": "^10.7.2",
|
|
84
84
|
"zod": "^4.4.3"
|
|
85
85
|
},
|