Skip to content

Commit 6fbcce6

Browse files
authored
chore(ec2): correct device name in BastionHostLinux example (#29114)
Closes #29103. I tested the example and it deploys. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 89df42d commit 6fbcce6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/aws-cdk-lib/aws-ec2/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1429,7 +1429,7 @@ EBS volume for the bastion host can be encrypted like:
14291429
const host = new ec2.BastionHostLinux(this, 'BastionHost', {
14301430
vpc,
14311431
blockDevices: [{
1432-
deviceName: 'EBSBastionHost',
1432+
deviceName: '/dev/sdh',
14331433
volume: ec2.BlockDeviceVolume.ebs(10, {
14341434
encrypted: true,
14351435
}),

0 commit comments

Comments
 (0)