Skip to content

Instantly share code, notes, and snippets.

@Console32
Last active July 24, 2019 09:43
Show Gist options
  • Save Console32/6bcdcdfd95fdb8212b0b39cad0e59b35 to your computer and use it in GitHub Desktop.
Save Console32/6bcdcdfd95fdb8212b0b39cad0e59b35 to your computer and use it in GitHub Desktop.
medium.bastion-host.usage.ts
const network = new ec2.Vpc(this, 'main', {
maxAZs: 1
})
const bastionHost = new vlib.BastionHost(this, 'bastionHost', {
image: new ec2.AmazonLinuxImage(),
peers: [ec2.Peer.anyIpv4()],
vpc: network,
keyName: 'raphaels-key'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment