We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just a small update on the “Using Spot Instances with EKS” lab. On the “Create an SSH key page”: https://ec2spotworkshops.com/using_ec2_spot_instances_with_eks/prerequisites/sshkey.html
Now that we have AWS CLI 2.0 the command to upload the public key to AWS fails:
aws ec2 import-key-pair --key-name "eksworkshop" \ --public-key-material file://~/.ssh/id_rsa.pub
will generate an error Invalid base64
Invalid base64
The command needs a minor tweak to work:
aws ec2 import-key-pair --key-name "eksworkshop" \ --public-key-material fileb://~/.ssh/id_rsa.pub” will work as desired.
Simply changing file:// to fileb:// is all it takes.
file://
fileb://
Worth updating as this caught out everyone and had us stuck for about 15 minutes. Not fun with 20 customers in a virtual event J
Cheers, Greg
The text was updated successfully, but these errors were encountered:
I think this is addressed in #77
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Just a small update on the “Using Spot Instances with EKS” lab.
On the “Create an SSH key page”:
https://ec2spotworkshops.com/using_ec2_spot_instances_with_eks/prerequisites/sshkey.html
Now that we have AWS CLI 2.0 the command to upload the public key to AWS fails:
will generate an error
Invalid base64
The command needs a minor tweak to work:
Simply changing
file://
tofileb://
is all it takes.Worth updating as this caught out everyone and had us stuck for about 15 minutes. Not fun with 20 customers in a virtual event J
Cheers,
Greg
The text was updated successfully, but these errors were encountered: