Created
March 11, 2023 03:36
-
-
Save desiby/3c948717203bbbc144dd5d1ab3203012 to your computer and use it in GitHub Desktop.
This file contains 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
package com.mycompany.app; | |
import com.hashicorp.cdktf.App; | |
public class Main | |
{ | |
public static void main(String[] args) throws Exception { | |
final App app = new App(); | |
new BastionStack(app, "bastion-java-stack"); | |
app.synth(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment