Created
April 26, 2020 03:16
-
-
Save gandroz/55972c4471732567554eb5a34060a3b3 to your computer and use it in GitHub Desktop.
CDK application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from aws_cdk import core | |
from my_stack import MyCdkStack | |
env_dev = core.Environment(account="123456789", region="ca-central-1") | |
app = core.App() | |
DsptCdkStack(app, "MyCdkStack", env=env_dev) | |
app.synth() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment