-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.py
31 lines (29 loc) · 1.84 KB
/
app.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
#!/usr/bin/env python3
# **********************************************************************************************************
# Imports
# **********************************************************************************************************
# ----------------------------------------------------------------------------------------------------------
import os
# ----------------------------------------------------------------------------------------------------------
from aws_cdk import core as cdk
# **********************************************************************************************************
# Stack Imports
# **********************************************************************************************************
from stacks.custom_resources import CustomResourceStack
from stacks.agent_setup_stack import AgentStack
from stacks.customer_setup_stack import CustomerStack
# **********************************************************************************************************
# Initilize App
# **********************************************************************************************************
# ----------------------------------------------------------------------------------------------------------
app = cdk.App()
# **********************************************************************************************************
# Stacks
# **********************************************************************************************************
cr_stack = CustomResourceStack(app, 'hlc302Cr')
agent_stack = AgentStack(app, 'hlc302Agent')
customer_stack = CustomerStack(app, 'hlc302Customer')
# **********************************************************************************************************
# Synthesize App
# **********************************************************************************************************
app.synth()