Skip to content

Instantly share code, notes, and snippets.

@CrimsonScythe
Last active August 19, 2022 18:06
Show Gist options
  • Save CrimsonScythe/50eade84b963f67455c08c9c61da3802 to your computer and use it in GitHub Desktop.
Save CrimsonScythe/50eade84b963f67455c08c9c61da3802 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
import aws_cdk as cdk
import os
from ecs.ecs_stack import EcsStack
app = cdk.App()
EcsStack(app, "ecs", env={"region": "eu-central-1", "account": os.environ['CDK_DEFAULT_ACCOUNT']})
app.synth()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment