Skip to content

Commit

Permalink
feat(bastion-host): Append ec2 instance with 'bastion host'
Browse files Browse the repository at this point in the history
  • Loading branch information
alukach committed Nov 8, 2022
1 parent db0d616 commit 4ee8599
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bastion-host/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export class BastionHost extends Construct {
this.instance = new ec2.Instance(this, "bastion-host", {
vpc: props.vpc,
vpcSubnets: { subnetType: ec2.SubnetType.PUBLIC },
instanceName: stackName,
instanceName: `${stackName} bastion host`,
instanceType: ec2.InstanceType.of(
ec2.InstanceClass.BURSTABLE4_GRAVITON,
ec2.InstanceSize.NANO
Expand Down

0 comments on commit 4ee8599

Please sign in to comment.