Created
May 3, 2019 18:52
-
-
Save urjitbhatia/c5af8a3d53661cb3d4e896feae23fc1d to your computer and use it in GitHub Desktop.
Check if an ec2 instance is spot or normal lifecycle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
aws ec2 describe-spot-instance-requests \ | |
--filters Name=instance-id,Values="$(wget -q -O - http://169.254.169.254/latest/meta-data/instance-id)" \ | |
--region us-east-1 | \ | |
jq -r '.SpotInstanceRequests | if length > 0 then "spot" else "normal" end' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@urjitbhatia , Thank you so much for this code snippet. It was exactly what I was looking for!