Comment 1 for bug 2023924

Revision history for this message
Mitchell Dzurick (mitchdz) wrote (last edit ):

Thank you for reporting this Alex! I tested version 1.0.0-0ubuntu9.3 in a Focal EC2 instance (instructions on what I used to provision system below) and do not see this. Do you happen to have the AMI ID/machine configuration that you used and reproduce this? I'd be glad to try that configuration out.

What I used to test:
```
AWS_REGION="eu-north-1"
AWS_AMI="ami-07ca74b1a97901682"
AWS_KEY="your key name"
AWS_SECURITY_GROUP="security instance that allows ssh from anywhere"
aws ec2 run-instances \
 --region ${AWS_REGION} \
 --image-id ${AWS_AMI} \
 --count 1 \
 --instance-type t3.micro \
 --key-name ${AWS_KEY} \
 --metadata-options "HttpTokens=required" \
 --security-group-ids ${AWS_SECURITY_GROUP} \
 --tag-specifications 'ResourceType=instance,Tags=[{Key=Name,Value=focal-test-hibinit}]' \
 --block-device-mappings '[{"DeviceName":"/dev/sda1","Ebs":{"Encrypted":true,"DeleteOnTermination":true,"VolumeSize":8,"VolumeType":"gp2"}}]' \
 --hibernation-options 'Configured=true'
```