Skip to content

Instantly share code, notes, and snippets.

@desiby
Created March 11, 2023 03:36
Show Gist options
  • Save desiby/3c948717203bbbc144dd5d1ab3203012 to your computer and use it in GitHub Desktop.
Save desiby/3c948717203bbbc144dd5d1ab3203012 to your computer and use it in GitHub Desktop.
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