@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.
@@ -7,7 +7,6 @@ interface ProxyAgentProps extends StackProps {
7
7
  accountId?: string;
8
8
  vpc?: IVpc;
9
9
  publicKey: string;
10
- enableSSH?: boolean;
11
10
  instanceType: string;
12
11
  databaseConnection?: Connections;
13
12
  tags?: KeyValue;
@@ -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
- enableSSH: props.enableSSH || true,
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 MB. Range: 512-10240. Default: 512. */
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": "31.0.0",
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": "^31.0.0",
82
- "@fjall/util": "^31.0.0",
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
  },