#!/usr/bin/env python
from constructs import Construct
from cdktn import App, TerraformStack


class MyStack(TerraformStack):
    def __init__(self, scope: Construct, id: str):
        super().__init__(scope, id)

        # define resources here


app = App()
MyStack(app, "{{ $base }}")

app.synth()
