Skip to content

Commit

Permalink
Tweak variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
patchwork01 committed Aug 10, 2022
1 parent 4047ab0 commit 4d9700e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ public class SleeperEnvironmentCdkApp extends Stack {
public SleeperEnvironmentCdkApp(Construct scope, StackProps props, AppContext app) {
super(scope, props.getStackName(), props);

NetworkingStack vpc = new NetworkingStack(this);
new BuildEC2Stack(this, vpc.getVpc(), app);
NetworkingStack networking = new NetworkingStack(this);
new BuildEC2Stack(this, networking.getVpc(), app);
}

public static void main(String[] args) {
Expand Down

0 comments on commit 4d9700e

Please sign in to comment.