Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions infrastructure/app.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import os
from pathlib import Path

from aws_cdk import (
App,
CfnOutput,
Duration,
Environment,
RemovalPolicy,
Stack,
aws_ec2,
Expand Down Expand Up @@ -377,12 +375,6 @@ def __init__(

app_config = AppConfig()

# Get AWS account and region from environment (uses AWS_PROFILE)
env = Environment(
account=os.environ.get("CDK_DEFAULT_ACCOUNT"),
region=os.environ.get("CDK_DEFAULT_REGION"),
)

vpc_stack = VpcStack(
scope=app,
app_config=app_config,
Expand All @@ -394,7 +386,6 @@ def __init__(
app_config=app_config,
id=app_config.project,
vpc=vpc_stack.vpc,
env=env,
)

app.synth()