-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.ts
137 lines (116 loc) Β· 3.29 KB
/
serverless.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
import type { Construct } from 'constructs'
import type { CloudOptions } from '../types'
import {
AiStack,
CdnStack,
CliStack,
ComputeStack,
DeploymentStack,
DnsStack,
DocsStack,
EmailStack,
FileSystemStack,
JumpBoxStack,
NetworkStack,
PermissionsStack,
QueueStack,
RedirectsStack,
SecurityStack,
StorageStack,
} from '@stacksjs/cloud'
import { config } from '@stacksjs/config'
import { Stack } from 'aws-cdk-lib'
// import { DashboardStack } from './dashboard'
export class Cloud extends Stack {
dns: DnsStack
security: SecurityStack
storage: StorageStack
network: NetworkStack
fileSystem: FileSystemStack
jumpBox: JumpBoxStack
docs: DocsStack
email: EmailStack
redirects: RedirectsStack
permissions: PermissionsStack
ai: AiStack
cli: CliStack
api!: ComputeStack
cdn!: CdnStack
queue!: QueueStack
deployment!: DeploymentStack
scope: Construct
props: CloudOptions
constructor(scope: Construct, id: string, props: CloudOptions) {
super(scope, id, props)
this.scope = scope
this.props = props
// please beware: be careful changing the order of the stack creations below
this.dns = new DnsStack(this, props)
this.security = new SecurityStack(this, {
...props,
zone: this.dns.zone,
})
this.storage = new StorageStack(this, {
...props,
kmsKey: this.security.kmsKey,
})
this.network = new NetworkStack(this, props)
this.fileSystem = new FileSystemStack(this, {
...props,
vpc: this.network.vpc,
})
this.jumpBox = new JumpBoxStack(this, {
...props,
vpc: this.network.vpc,
fileSystem: this.fileSystem.fileSystem,
})
this.docs = new DocsStack(this, props)
this.email = new EmailStack(this, {
...props,
zone: this.dns.zone,
})
this.redirects = new RedirectsStack(this, props)
this.permissions = new PermissionsStack(this)
// new DashboardStack(this)
this.ai = new AiStack(this, props)
this.cli = new CliStack(this, props)
}
// we use an async init() method here because we need to wait for the
async init() {
if (config.api?.deploy) {
const props = this.props
this.api = new ComputeStack(this, {
...props,
vpc: this.network.vpc,
fileSystem: this.fileSystem.fileSystem,
zone: this.dns.zone,
certificate: this.security.certificate,
})
this.queue = new QueueStack(this, {
...props,
cluster: this.api.cluster,
taskDefinition: this.api.taskDefinition,
})
await this.queue.init()
this.cdn = new CdnStack(this, {
...props,
publicBucket: this.storage.publicBucket,
logBucket: this.storage.logBucket,
certificate: this.security.certificate,
firewall: this.security.firewall,
originRequestFunction: this.docs.originRequestFunction,
zone: this.dns.zone,
lb: this.api?.lb,
})
this.deployment = new DeploymentStack(this, {
...props,
publicBucket: this.storage.publicBucket,
privateBucket: this.storage.privateBucket,
appBucket: this.storage.publicBucket,
docsBucket: this.storage.docsBucket,
mainDistribution: this.cdn.mainDistribution,
docsDistribution: this.cdn.docsDistribution,
})
}
}
}