Skip to content

Commit

Permalink
chore(ec2): correct device name in BastionHostLinux example
Browse files Browse the repository at this point in the history
  • Loading branch information
msambol committed Feb 14, 2024
1 parent 712306d commit 125a056
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-ec2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1429,7 +1429,7 @@ EBS volume for the bastion host can be encrypted like:
const host = new ec2.BastionHostLinux(this, 'BastionHost', {
vpc,
blockDevices: [{
deviceName: 'EBSBastionHost',
deviceName: '/dev/sdh',
volume: ec2.BlockDeviceVolume.ebs(10, {
encrypted: true,
}),
Expand Down

0 comments on commit 125a056

Please sign in to comment.