-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
42 lines (30 loc) · 1023 Bytes
/
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
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python3
import string
import aws_cdk as cdk
from importlib import import_module
from barrel.barrel_stack import BarrelStack
from barrel.configuration import Configuration
app = cdk.App()
study_name = app.node.try_get_context("study")
analysis_name = app.node.try_get_context("analysis")
study = import_module(f"barrel.studies.{study_name}")
analysis = study.analyses[analysis_name]
configuration = Configuration(
study=study_name,
analysis=analysis_name,
pipeline=analysis.pipeline,
bucket=analysis.infrastructure.bucket,
file_system=analysis.infrastructure.file_system,
users=analysis.infrastructure.users,
)
def to_pascal_case(identifier):
return string.capwords(identifier, sep="_").replace("_", "")
stage = cdk.Stage(
app,
to_pascal_case(configuration.study),
env=cdk.Environment(
account=analysis.infrastructure.account, region=analysis.infrastructure.region
),
)
BarrelStack(stage, "BarrelStack", configuration=configuration)
app.synth()