-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
executable file
·109 lines (86 loc) · 2.4 KB
/
main.py
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
#!/usr/bin/env python
from cdktf import App, S3Backend, TerraformStack
from cdktf_cdktf_provider_aws.ecs_cluster import EcsCluster
from cdktf_cdktf_provider_aws.provider import AwsProvider
from constructs import Construct
from kmnlp_infra.bootstrap import DeployRole
from kmnlp_infra.chainlit_ecs import (
Alb,
DemoKmnlpChainlitEcsService,
)
from kmnlp_infra.common import (
LOCK_TABLE,
REGION,
STATE_BUCKET,
Network,
)
class BootstrapStack(TerraformStack):
"""A bootstrap stack used to create the conditions necessary for deploy.
At this moment, it creates just the IAM role necessary for deploying.
"""
deploy_role: DeployRole
def __init__(
self,
scope: Construct,
id: str,
) -> None:
super().__init__(scope, id)
AwsProvider(
self,
"aws",
region=REGION,
)
self.deploy_role = DeployRole(self, "deploy-role")
class DemoKmnlpInfraStack(TerraformStack):
"""Create Demo stack to run Chainlit service for the KMNLP project.
The service runs in the Elastic Container Service running as Fargate tasks.
"""
alb: Alb
ecs_service: DemoKmnlpChainlitEcsService
ecs_cluster: EcsCluster
network: Network
def __init__(
self,
scope: Construct,
id: str,
) -> None:
super().__init__(scope, id)
AwsProvider(
self,
"aws",
region=REGION,
)
self.network = Network(self, id="kmnlp-network")
self.alb = Alb(
self,
id="alb",
network=self.network,
name="demo-kmnlp-chainlit-alb",
domain="demo.kmnlp.element84.com",
)
self.ecs_cluster = EcsCluster(self, "ecs-cluster", name="kmnlp-ecs-cluster")
self.ecs_service = DemoKmnlpChainlitEcsService(
self,
id="ecs_service",
network=self.network,
ecs_cluster=self.ecs_cluster,
alb=self.alb,
)
app = App()
bootstrap_stack = BootstrapStack(app, "kmnlp_bootstrap")
stack = DemoKmnlpInfraStack(app, "kmnlp_infra")
S3Backend(
bootstrap_stack,
region=REGION,
bucket=STATE_BUCKET,
key="bootstrap-tf-state",
dynamodb_table=LOCK_TABLE,
)
S3Backend(
stack,
region=REGION,
bucket=STATE_BUCKET,
key="kmnlp-tf-state",
dynamodb_table=LOCK_TABLE,
)
app.synth()