-
Notifications
You must be signed in to change notification settings - Fork 6
/
sst.config.ts
380 lines (353 loc) · 9.87 KB
/
sst.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
/// <reference path="./.sst/platform/config.d.ts" />
import crypto from "node:crypto";
import path from "node:path";
import type { Env } from "./apps/api/src/env";
if ("CLOUDFLARE_DEFAULT_ACCOUNT_ID" in process.env === false)
throw new Error("'CLOUDFLARE_DEFAULT_ACCOUNT_ID' is required");
const accountId = process.env.CLOUDFLARE_DEFAULT_ACCOUNT_ID!;
export default $config({
app: (input) => ({
name: "mattrax",
removal: input?.stage === "prod" ? "retain" : "remove",
home: "cloudflare",
providers: {
aws: { region: "us-east-1" },
cloudflare: true,
tls: true,
command: true,
random: true,
},
}),
async run() {
// Prerequisites
const zone = await cloudflare.getZone({
accountId,
// mattrax.app
zoneId: "39b92fff0aea21806fd1b6c6bea628ce",
});
// Configuration
const DATABASE_URL = new sst.Secret("DatabaseURL");
const ENTRA_CLIENT_ID = new sst.Secret("EntraClientID");
const ENTRA_CLIENT_SECRET = new sst.Secret("EntraClientSecret");
const AXIOM_API_TOKEN = new sst.Secret("AxiomApiToken");
const WAITLIST_DISCORD_WEBHOOK_URL = new sst.Secret(
"WaitlistDiscordWebhookURL",
);
const FEEDBACK_DISCORD_WEBHOOK_URL = new sst.Secret(
"FeedbackDiscordWebhookURL",
);
const DO_THE_THING_WEBHOOK_URL = new sst.Secret("DoTheThingWebhookURL");
// Derived
const webSubdomain = $app.stage === "prod" ? "cloud" : `${$app.stage}-web`;
const manageSubdomain =
$app.stage === "prod" ? "manage" : `${$app.stage}-manage`;
// Automatic
const INTERNAL_SECRET = new random.RandomString("internalSecret", {
length: 64,
overrideSpecial: "$-_.+!*'()",
});
// Defaults
$transform(sst.aws.Function, (args) => {
args.architecture ??= "arm64";
});
$transform(cloudflare.WorkerScript, (args) => {
args.compatibilityDate ??= "2024-09-29";
args.compatibilityFlags ??= ["nodejs_compat_v2"];
});
$transform(cloudflare.PagesProject, (args) => {
if (!args.deploymentConfigs) args.deploymentConfigs = {};
args.deploymentConfigs = $resolve([args.deploymentConfigs]).apply(
([cfg]) => {
if (!cfg.preview) cfg.preview = {};
if (!cfg.production) cfg.production = {};
cfg.preview.compatibilityDate ??= "2024-09-29";
cfg.preview.compatibilityFlags ??= ["nodejs_compat_v2"];
cfg.production.compatibilityDate ??= "2024-09-29";
cfg.production.compatibilityFlags ??= ["nodejs_compat_v2"];
return cfg;
},
);
});
// Email
const email =
$app.stage !== "prod"
? sst.aws.Email.get("email", "mattrax.app")
: new sst.aws.Email("email", {
sender: "mattrax.app",
dmarc:
"v=DMARC1; p=reject; rua=mailto:[email protected]; adkim=r; aspf=r;",
dns: sst.cloudflare.dns(),
});
const sender = $interpolate`hello@${email.sender}`;
// Fastmail email
if ($app.stage === "prod") {
const cnames = {
"mesmtp._domainkey.mattrax.app": "mesmtp.mattrax.app.dkim.fmhosted.com",
"fm1._domainkey": "fm1.mattrax.app.dkim.fmhosted.com",
"fm2._domainkey": "fm2.mattrax.app.dkim.fmhosted.com",
"fm3._domainkey": "fm3.mattrax.app.dkim.fmhosted.com",
};
const mxs = [
["in1-smtp.messagingengine.com", 10],
["in2-smtp.messagingengine.com", 20],
] as const;
const txts = [
"v=spf1 include:spf.messagingengine.com include:amazonses.com -all",
];
for (const [name, content] of Object.entries(cnames)) {
new cloudflare.Record(`CnameRecord${name}`, {
zoneId: zone.id,
name: name,
type: "CNAME",
content,
proxied: false,
});
}
for (const [content, priority] of mxs) {
new cloudflare.Record(`MxRecord${content}`, {
zoneId: zone.id,
name: "@",
type: "MX",
content,
priority,
});
}
for (const value of txts) {
new cloudflare.Record(`TxtRecord${value}`, {
zoneId: zone.id,
name: "@",
type: "TXT",
content: value,
});
}
}
// `apps/cloud` - SQL proxy
const cloudBuild = new command.local.Command("cloudBuild", {
create:
"./.github/cl.sh build --arm64 --release -p mx-cloud --bin lambda",
dir: process.cwd(),
// TODO: We should be able to ask Nx if the project has changed and only deploy if required.
triggers: [crypto.randomUUID()],
environment: {
CARGO_TERM_COLOR: "always",
},
});
const cloud = new sst.aws.Function(
"cloud",
{
handler: "bootstrap",
architecture: "arm64",
runtime: "provided.al2023",
// SST/Pulumi is having problems with `dependsOn` so we force their hand.
bundle: cloudBuild.stdout.apply(() =>
path.join(process.cwd(), "target", "lambda", "lambda"),
),
memory: "128 MB",
environment: {
DATABASE_URL: DATABASE_URL.value,
INTERNAL_SECRET: INTERNAL_SECRET.result,
},
// TODO: We should probs setup IAM on this???
url: true,
},
{
dependsOn: [cloudBuild],
},
);
const cloudHost = cloud.url.apply((url) => new URL(url).host);
// Records for: https://mtls.mattrax.app
new cloudflare.Record("mtlsCNAME", {
zoneId: zone.id,
name: manageSubdomain,
type: "CNAME",
content: "mtls.mattrax.app",
});
new cloudflare.Record("mtlsTXT", {
zoneId: zone.id,
name: manageSubdomain,
type: "TXT",
content: "mtls:accept|https://mattrax.app",
});
const webUser = new aws.iam.User("web");
const webAccessKey = new aws.iam.AccessKey("webAccessKey", {
user: webUser.name,
});
const webPolicy = aws.iam.getPolicyDocument({
statements: [
{
effect: "Allow",
actions: ["ses:SendEmail*"],
resources: ["*"],
},
],
});
new aws.iam.UserPolicy("webUserPolicy", {
name: "webPolicy",
user: webUser.name,
policy: webPolicy.then((p) => p.json),
});
const VITE_PROD_ORIGIN = `https://${renderZoneDomain(zone, webSubdomain)}`;
const env: { [K in keyof Env]: $util.Input<Env[K]> } = {
NODE_ENV: "production",
INTERNAL_SECRET: INTERNAL_SECRET.result,
DATABASE_URL: $interpolate`https://:${INTERNAL_SECRET.result}@${cloudHost}`,
MANAGE_URL: $interpolate`https://${renderZoneDomain(
zone,
manageSubdomain,
)}`,
FROM_ADDRESS: $interpolate`Mattrax <${sender}>`,
AWS_ACCESS_KEY_ID: webAccessKey.id,
AWS_SECRET_ACCESS_KEY: webAccessKey.secret,
ENTRA_CLIENT_ID: ENTRA_CLIENT_ID.value,
ENTRA_CLIENT_SECRET: ENTRA_CLIENT_SECRET.value,
VITE_PROD_ORIGIN,
WAITLIST_DISCORD_WEBHOOK_URL: WAITLIST_DISCORD_WEBHOOK_URL.value,
FEEDBACK_DISCORD_WEBHOOK_URL: FEEDBACK_DISCORD_WEBHOOK_URL.value,
DO_THE_THING_WEBHOOK_URL: DO_THE_THING_WEBHOOK_URL.value,
AXIOM_API_TOKEN: AXIOM_API_TOKEN.value,
AXIOM_DATASET: "mattrax",
};
const web = CloudflarePages("web", {
domain: {
zone,
sub: $app.stage === "prod" ? "cloud" : `${$app.stage}-web.dev`,
},
build: {
command: "pnpm api build",
output: path.join("apps", "api", "dist"),
environment: {
NITRO_PRESET: "cloudflare_pages",
NODE_ENV: "production",
VITE_PROD_ORIGIN,
},
},
site: {
deploymentConfigs: {
preview: {
environmentVariables: env as any,
placement: {
mode: "smart",
},
},
production: {
environmentVariables: env as any,
placement: {
mode: "smart",
},
},
},
},
});
// `apps/landing`
const landing = CloudflarePages("landing", {
domain: {
zone,
sub: $app.stage === "prod" ? "@" : `${$app.stage}-landing.dev`,
},
build: {
command: "pnpm landing build",
output: path.join("apps", "landing", "dist"),
environment: {
NITRO_PRESET: "cloudflare_pages",
NODE_ENV: "production",
VITE_MATTRAX_CLOUD_ORIGIN: web.url,
},
},
});
return {
cloudApi: cloud.url,
landing: landing.url,
web: web.url,
};
},
});
const renderZoneDomain = (zone: cloudflare.GetZoneResult, sub: string) =>
`${sub === "@" ? "" : `${sub}.`}${zone.name}`;
/// A construct which takes care of creating a Cloudflare Pages project and creating an associated deployment.
function CloudflarePages(
name: string,
opts: {
build: {
command: string;
output: string;
environment?: Record<string, $util.Input<string>>;
};
site?: Partial<Omit<cloudflare.PagesProjectArgs, "name">>;
domain?: {
zone: cloudflare.GetZoneResult;
sub: string;
};
dependsOn?:
| $util.Input<$util.Input<$util.Resource>[]>
| $util.Input<$util.Resource>;
},
) {
const site = new cloudflare.PagesProject(
`${name}Site`,
{
...opts.site,
accountId,
name: $app.stage === "prod" ? name : `${name}-${$app.stage}`,
productionBranch: opts.site?.productionBranch ?? "main",
},
{
dependsOn: opts.dependsOn,
},
);
// TODO: We only need to deploy when Nx says something changed. Eg. changing landing should skip deploying web.
const triggers = [crypto.randomUUID()];
const build = new command.local.Command(
`${name}Build`,
{
create: opts.build.command,
environment: opts.build.environment,
dir: process.cwd(),
triggers,
},
{
dependsOn: opts.dependsOn,
},
);
new command.local.Command(
`${name}Deploy`,
{
create: $interpolate`pnpm wrangler pages deploy ${path.join(
process.cwd(),
opts.build.output,
)} ${$app.stage !== "prod" ? "--commit-dirty " : ""}--project-name ${
site.id
}`,
environment: {
CLOUDFLARE_DEFAULT_ACCOUNT_ID: accountId,
CLOUDFLARE_ACCOUNT_ID: accountId,
},
dir: process.cwd(),
triggers,
},
{
dependsOn: [site, build],
},
);
let domain = "";
if (opts.domain) {
domain = renderZoneDomain(opts.domain.zone, opts.domain.sub);
new cloudflare.PagesDomain(`${name}Domain`, {
accountId,
domain,
projectName: site.name,
});
new cloudflare.Record(`${name}Record`, {
zoneId: opts.domain.zone.id,
name: opts.domain.sub,
type: "CNAME",
content: site.subdomain,
proxied: true,
});
}
// TODO: Cloudflare Access for preview deployments
return {
// TODO: Return the URL of the deployment instead of this for development.
url: `https://${domain}`,
previewSubdomain: site.subdomain,
};
}