Created
August 22, 2022 18:46
-
-
Save shotty1/6e0fef7f6cc3875f9b5acee9428f747b to your computer and use it in GitHub Desktop.
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 | |
instance_type_filter=g5.8xlarge | |
echo "Getting list of Availability Zones" | |
all_regions=$(aws ec2 describe-regions --output text --query 'Regions[*].[RegionName]' | sort) | |
all_az=() | |
while read -r region; do | |
echo "Getting AZs per region $region" | |
az_per_region=$(aws ec2 describe-availability-zones --region "$region" --query 'AvailabilityZones[*].[ZoneName]' --output text | sort) | |
while read -r az; do | |
all_az+=("$az") | |
done <<< "$az_per_region" | |
done <<< "$all_regions" | |
counter=1 | |
num_az=${#all_az[@]} | |
for az in "${all_az[@]}" | |
do | |
echo "Checking Availability Zone $az ($counter/$num_az)" | |
region=$(echo "$az" | rev | cut -c 2- | rev) | |
raw=$(aws ec2 describe-reserved-instances-offerings --instance-type "$instance_type_filter" --filters "Name=availability-zone,Values=$az" --region "$region") | |
instance_types=$(echo "$raw" | jq '.ReservedInstancesOfferings[] | .InstanceType' | sort -u) | |
while read -r instance_type; do | |
echo "$region;$az;$instance_type" >> instance-types.csv | |
done <<< "$instance_types" | |
counter=$((counter+1)) | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment