-
Notifications
You must be signed in to change notification settings - Fork 0
/
remix-stack-config.ts
28 lines (25 loc) · 1 KB
/
remix-stack-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
import { RemixStackConfig } from "./cdk/types";
const remixStackConfig: RemixStackConfig = {
// If not specified, the `stackName` will default to "remix"
// stackName: "customStackName",
//
// You can optionally provide ENV variables for your lambda function
// lambdaEnvironmentVariables: {
// YOUR_ENV_VAR_HERE: process.env.YOUR_ENV_VAR_HERE!,
// },
//
// Configure the amount of memory available to your lambda function, in MB
// Default is 128
// lambdaMemorySize: 256,
//
// If you would like to configure a custom domain for your CDN you must
// specify the `domainNames` and a `certificateArn` for that domain.
domainNames: [
"the.internet.never.works"
],
certificateArn: "arn:aws:acm:us-east-1:054037124368:certificate/cab12c21-e47a-4785-90c4-5ff41cc1bd5a",
// If you are using jwtCookieSessionHandlerFactory, you'll want to configure
// an ENV variable for the secret used there.
remixCookieSecret: process.env.REMIX_COOKIE_SECRET,
};
export default remixStackConfig;