Last active
November 30, 2023 15:00
-
-
Save grenade/b03edb28bba5d3542a6b50b742318061 to your computer and use it in GitHub Desktop.
fetch aws ec2 pricing data for on-demand, license free, instances
This gist exceeds the recommended number of files (~10).
To access all files, please clone this gist.
This file contains 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
#!/usr/bin/env bash | |
# usage: curl -sL https://gist.github.com/grenade/b03edb28bba5d3542a6b50b742318061/raw/fetch-ec2-pricing.sh | bash | |
# csv filenames | |
raw_path=/tmp/ec2.csv | |
machine_path=/tmp/machine.csv | |
price_path=/tmp/price.csv | |
region_path=/tmp/region.csv | |
# dependencies | |
for package in coreutils curl datamash grep miller python3-csvkit; do | |
if ! dnf list installed ${package} &> /dev/null; then | |
sudo dnf install -y ${package} | |
fi | |
done | |
# fetch raw data from aws | |
if [ ! -s ${raw_path} ]; then | |
curl -Lo ${raw_path} https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonEC2/current/index.csv | |
fi | |
# build machine list | |
if [ ! -s ${machine_path} ]; then | |
echo '"id","current-generation","family","vcpu","processor","clock","memory","storage","network","architecture"' > ${machine_path} | |
tail -n +7 ${raw_path} | cut -d , -f 20-29 | grep -v '"AWS Region"' | grep -v '"NA","NA","NA"' | grep -v ',,,,,,,,,' | sort -u >> ${machine_path} | |
fi | |
# build price list, filtering out everything but license-free, on-demand instances in regions available to the public | |
if [ ! -s ${price_path} ]; then | |
echo machine,region,price > ${price_path} | |
cat ${raw_path} | grep '"Linux","No License required"' | grep -v 'SQL' | grep -v '"Reserved"' | grep -v '"0.0000000000"' | grep -v 'Unused Reservation' | grep -v 'Dedicated' | cut -d , -f 10,20,85 | egrep '"(af|ap|ca|eu|me|sa|us)-(north|south|east|west|central)(east|west)?-[1-3]"' | mlr --csv --implicit-csv-header reorder -f 2,3,1 | grep -v '2,3,1' | sort >> ${price_path} | |
fi | |
# build region list, filtering out private customer regions | |
if [ ! -s ${region_path} ]; then | |
echo '"id","name"' > ${region_path} | |
tail -n +7 ${raw_path} | cut -d , -f 18,85 | sort -u | datamash -t , reverse | egrep '"(af|ap|ca|eu|me|sa|us)-(north|south|east|west|central)(east|west)?-[1-3]"' | sort >> ${region_path} | |
fi |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.2568000000 | |
ap-south-1 | 0.2040000000 | |
ap-southeast-1 | 0.2352000000 | |
ap-southeast-2 | 0.2664000000 | |
eu-central-1 | 0.2328000000 | |
eu-west-1 | 0.2304000000 | |
us-east-1 | 0.2040000000 | |
us-east-2 | 0.2040000000 | |
us-west-2 | 0.2040000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.2568000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.2040000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.2352000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.2664000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.2328000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.2304000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.2040000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.2040000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.2040000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.5136000000 | |
ap-south-1 | 0.4080000000 | |
ap-southeast-1 | 0.4704000000 | |
ap-southeast-2 | 0.5328000000 | |
eu-central-1 | 0.4656000000 | |
eu-west-1 | 0.4608000000 | |
us-east-1 | 0.4080000000 | |
us-east-2 | 0.4080000000 | |
us-west-2 | 0.4080000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.5136000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.4080000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.4704000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.5328000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.4656000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.4608000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.4080000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.4080000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.4080000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.0642000000 | |
ap-south-1 | 0.0510000000 | |
ap-southeast-1 | 0.0588000000 | |
ap-southeast-2 | 0.0666000000 | |
eu-central-1 | 0.0582000000 | |
eu-west-1 | 0.0576000000 | |
us-east-1 | 0.0510000000 | |
us-east-2 | 0.0510000000 | |
us-west-2 | 0.0510000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.0642000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0510000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.0588000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.0666000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.0582000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.0576000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0510000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0510000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0510000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.0321000000 | |
ap-south-1 | 0.0255000000 | |
ap-southeast-1 | 0.0294000000 | |
ap-southeast-2 | 0.0333000000 | |
eu-central-1 | 0.0291000000 | |
eu-west-1 | 0.0288000000 | |
us-east-1 | 0.0255000000 | |
us-east-2 | 0.0255000000 | |
us-west-2 | 0.0255000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.0321000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0255000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.0294000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.0333000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.0291000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.0288000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0255000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0255000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0255000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.5140000000 | |
ap-south-1 | 0.4080000000 | |
ap-southeast-1 | 0.4700000000 | |
ap-southeast-2 | 0.5330000000 | |
eu-central-1 | 0.4660000000 | |
eu-west-1 | 0.4610000000 | |
us-east-1 | 0.4080000000 | |
us-east-2 | 0.4080000000 | |
us-west-2 | 0.4080000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.5140000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.4080000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.4700000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.5330000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.4660000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.4610000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.4080000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.4080000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.4080000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.1284000000 | |
ap-south-1 | 0.1020000000 | |
ap-southeast-1 | 0.1176000000 | |
ap-southeast-2 | 0.1332000000 | |
eu-central-1 | 0.1164000000 | |
eu-west-1 | 0.1152000000 | |
us-east-1 | 0.1020000000 | |
us-east-2 | 0.1020000000 | |
us-west-2 | 0.1020000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.1284000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.1020000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.1176000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.1332000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.1164000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.1152000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1020000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1020000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1020000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.1580000000 | |
ap-southeast-1 | 0.1640000000 | |
ap-southeast-2 | 0.1640000000 | |
eu-west-1 | 0.1480000000 | |
sa-east-1 | 0.1790000000 | |
us-east-1 | 0.1300000000 | |
us-west-1 | 0.1480000000 | |
us-west-2 | 0.1300000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.1580000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.1640000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.1640000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.1480000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.1790000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1300000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.1480000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1300000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.6320000000 | |
ap-southeast-1 | 0.6550000000 | |
ap-southeast-2 | 0.6550000000 | |
eu-west-1 | 0.5920000000 | |
sa-east-1 | 0.7180000000 | |
us-east-1 | 0.5200000000 | |
us-west-1 | 0.5920000000 | |
us-west-2 | 0.5200000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.6320000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.6550000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.6550000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.5920000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.7180000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.5200000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.5920000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.5200000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.5110000000 | |
ap-northeast-2 | 0.4600000000 | |
ap-northeast-3 | 0.5120000000 | |
ap-southeast-1 | 0.5290000000 | |
ap-southeast-2 | 0.5290000000 | |
eu-central-1 | 0.5160000000 | |
eu-west-1 | 0.4780000000 | |
sa-east-1 | 0.6500000000 | |
us-east-1 | 0.4200000000 | |
us-west-1 | 0.4780000000 | |
us-west-2 | 0.4200000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.5110000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.4600000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.5120000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.5290000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.5290000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.5160000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.4780000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.6500000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.4200000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.4780000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.4200000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 1.0210000000 | |
ap-northeast-2 | 0.9190000000 | |
ap-northeast-3 | 1.0240000000 | |
ap-southeast-1 | 1.0580000000 | |
ap-southeast-2 | 1.0580000000 | |
eu-central-1 | 1.0320000000 | |
eu-west-1 | 0.9560000000 | |
sa-east-1 | 1.3000000000 | |
us-east-1 | 0.8400000000 | |
us-west-1 | 0.9560000000 | |
us-west-2 | 0.8400000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 1.0210000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.9190000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 1.0240000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 1.0580000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.0580000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.0320000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.9560000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 1.3000000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.8400000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.9560000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.8400000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 2.0430000000 | |
ap-northeast-2 | 1.8390000000 | |
ap-northeast-3 | 2.0480000000 | |
ap-southeast-1 | 2.1170000000 | |
ap-southeast-2 | 2.1170000000 | |
eu-central-1 | 2.0640000000 | |
eu-west-1 | 1.9120000000 | |
sa-east-1 | 2.6000000000 | |
us-east-1 | 1.6800000000 | |
us-west-1 | 1.9120000000 | |
us-west-2 | 1.6800000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.0430000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 1.8390000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 2.0480000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.1170000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 2.1170000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.0640000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.9120000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 2.6000000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.6800000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 1.9120000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.6800000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.1280000000 | |
ap-northeast-2 | 0.1150000000 | |
ap-northeast-3 | 0.1280000000 | |
ap-southeast-1 | 0.1320000000 | |
ap-southeast-2 | 0.1320000000 | |
eu-central-1 | 0.1290000000 | |
eu-west-1 | 0.1200000000 | |
sa-east-1 | 0.1630000000 | |
us-east-1 | 0.1050000000 | |
us-west-1 | 0.1200000000 | |
us-west-2 | 0.1050000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.1280000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.1150000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.1280000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.1320000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.1320000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.1290000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.1200000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.1630000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1050000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.1200000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1050000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.2550000000 | |
ap-northeast-2 | 0.2300000000 | |
ap-northeast-3 | 0.2560000000 | |
ap-southeast-1 | 0.2650000000 | |
ap-southeast-2 | 0.2650000000 | |
eu-central-1 | 0.2580000000 | |
eu-west-1 | 0.2390000000 | |
sa-east-1 | 0.3250000000 | |
us-east-1 | 0.2100000000 | |
us-west-1 | 0.2390000000 | |
us-west-2 | 0.2100000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.2550000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.2300000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.2560000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.2650000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.2650000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.2580000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.2390000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.3250000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.2100000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.2390000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.2100000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.5040000000 | |
ap-northeast-2 | 0.4540000000 | |
ap-northeast-3 | 0.5040000000 | |
ap-south-1 | 0.4000000000 | |
ap-southeast-1 | 0.4620000000 | |
ap-southeast-2 | 0.5220000000 | |
ca-central-1 | 0.4380000000 | |
eu-central-1 | 0.4540000000 | |
eu-west-1 | 0.4530000000 | |
eu-west-2 | 0.4760000000 | |
sa-east-1 | 0.6180000000 | |
us-east-1 | 0.3980000000 | |
us-east-2 | 0.3980000000 | |
us-west-1 | 0.4980000000 | |
us-west-2 | 0.3980000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.5040000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.4540000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.5040000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.4000000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.4620000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.5220000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.4380000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.4540000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.4530000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.4760000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.6180000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.3980000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.3980000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.4980000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.3980000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 1.0080000000 | |
ap-northeast-2 | 0.9070000000 | |
ap-northeast-3 | 1.0080000000 | |
ap-south-1 | 0.8000000000 | |
ap-southeast-1 | 0.9240000000 | |
ap-southeast-2 | 1.0420000000 | |
ca-central-1 | 0.8760000000 | |
eu-central-1 | 0.9090000000 | |
eu-west-1 | 0.9050000000 | |
eu-west-2 | 0.9500000000 | |
sa-east-1 | 1.2350000000 | |
us-east-1 | 0.7960000000 | |
us-east-2 | 0.7960000000 | |
us-west-1 | 0.9970000000 | |
us-west-2 | 0.7960000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 1.0080000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.9070000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 1.0080000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.8000000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.9240000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.0420000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.8760000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.9090000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.9050000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.9500000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 1.2350000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.7960000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.7960000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.9970000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.7960000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 2.0160000000 | |
ap-northeast-2 | 1.8150000000 | |
ap-northeast-3 | 2.0160000000 | |
ap-south-1 | 1.6000000000 | |
ap-southeast-1 | 1.8480000000 | |
ap-southeast-2 | 2.0850000000 | |
ca-central-1 | 1.7500000000 | |
eu-central-1 | 1.8170000000 | |
eu-west-1 | 1.8110000000 | |
eu-west-2 | 1.9020000000 | |
sa-east-1 | 2.4700000000 | |
us-east-1 | 1.5910000000 | |
us-east-2 | 1.5910000000 | |
us-west-1 | 1.9930000000 | |
us-west-2 | 1.5910000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.0160000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 1.8150000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 2.0160000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.6000000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 1.8480000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 2.0850000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 1.7500000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.8170000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.8110000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 1.9020000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 2.4700000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.5910000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.5910000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 1.9930000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.5910000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.1260000000 | |
ap-northeast-2 | 0.1140000000 | |
ap-northeast-3 | 0.1260000000 | |
ap-south-1 | 0.1000000000 | |
ap-southeast-1 | 0.1150000000 | |
ap-southeast-2 | 0.1300000000 | |
ca-central-1 | 0.1100000000 | |
eu-central-1 | 0.1140000000 | |
eu-west-1 | 0.1130000000 | |
eu-west-2 | 0.1190000000 | |
sa-east-1 | 0.1550000000 | |
us-east-1 | 0.1000000000 | |
us-east-2 | 0.1000000000 | |
us-west-1 | 0.1240000000 | |
us-west-2 | 0.1000000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.1260000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.1140000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.1260000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.1000000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.1150000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.1300000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.1100000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.1140000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.1130000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.1190000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.1550000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1000000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1000000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.1240000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1000000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.2520000000 | |
ap-northeast-2 | 0.2270000000 | |
ap-northeast-3 | 0.2520000000 | |
ap-south-1 | 0.2000000000 | |
ap-southeast-1 | 0.2310000000 | |
ap-southeast-2 | 0.2610000000 | |
ca-central-1 | 0.2180000000 | |
eu-central-1 | 0.2270000000 | |
eu-west-1 | 0.2260000000 | |
eu-west-2 | 0.2370000000 | |
sa-east-1 | 0.3090000000 | |
us-east-1 | 0.1990000000 | |
us-east-2 | 0.1990000000 | |
us-west-1 | 0.2490000000 | |
us-west-2 | 0.1990000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.2520000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.2270000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.2520000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.2000000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.2310000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.2610000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.2180000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.2270000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.2260000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.2370000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.3090000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1990000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1990000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.2490000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1990000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 2.7360000000 | |
ap-east-1 | 2.5920000000 | |
ap-northeast-1 | 2.5680000000 | |
ap-northeast-2 | 2.3040000000 | |
ap-northeast-3 | 2.5680000000 | |
ap-south-1 | 2.0400000000 | |
ap-southeast-1 | 2.3520000000 | |
ap-southeast-2 | 2.6640000000 | |
ap-southeast-3 | 2.3520000000 | |
ca-central-1 | 2.2320000000 | |
eu-central-1 | 2.3280000000 | |
eu-north-1 | 2.1840000000 | |
eu-south-1 | 2.4240000000 | |
eu-west-1 | 2.3040000000 | |
eu-west-2 | 2.4240000000 | |
eu-west-3 | 2.4240000000 | |
me-south-1 | 2.5340000000 | |
sa-east-1 | 3.1440000000 | |
us-east-1 | 2.0400000000 | |
us-east-2 | 2.0400000000 | |
us-west-1 | 2.5440000000 | |
us-west-2 | 2.0400000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 2.7360000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 2.5920000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.5680000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 2.3040000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 2.5680000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 2.0400000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.3520000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 2.6640000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 2.3520000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 2.2320000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.3280000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 2.1840000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 2.4240000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.3040000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 2.4240000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 2.4240000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 2.5340000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 3.1440000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.0400000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.0400000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 2.5440000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.0400000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 4.1040000000 | |
ap-east-1 | 3.8880000000 | |
ap-northeast-1 | 3.8520000000 | |
ap-northeast-2 | 3.4560000000 | |
ap-northeast-3 | 3.8520000000 | |
ap-south-1 | 3.0600000000 | |
ap-southeast-1 | 3.5280000000 | |
ap-southeast-2 | 3.9960000000 | |
ap-southeast-3 | 3.5280000000 | |
ca-central-1 | 3.3480000000 | |
eu-central-1 | 3.4920000000 | |
eu-north-1 | 3.2760000000 | |
eu-south-1 | 3.6360000000 | |
eu-west-1 | 3.4560000000 | |
eu-west-2 | 3.6360000000 | |
eu-west-3 | 3.6360000000 | |
me-south-1 | 3.8020000000 | |
sa-east-1 | 4.7160000000 | |
us-east-1 | 3.0600000000 | |
us-east-2 | 3.0600000000 | |
us-west-1 | 3.8160000000 | |
us-west-2 | 3.0600000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 4.1040000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 3.8880000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 3.8520000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 3.4560000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 3.8520000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 3.0600000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 3.5280000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 3.9960000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 3.5280000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 3.3480000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 3.4920000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 3.2760000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 3.6360000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 3.4560000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 3.6360000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 3.6360000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 3.8020000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 4.7160000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 3.0600000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 3.0600000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 3.8160000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 3.0600000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 5.4720000000 | |
ap-east-1 | 5.1840000000 | |
ap-northeast-1 | 5.1360000000 | |
ap-northeast-2 | 4.6080000000 | |
ap-northeast-3 | 5.1360000000 | |
ap-south-1 | 4.0800000000 | |
ap-southeast-1 | 4.7040000000 | |
ap-southeast-2 | 5.3280000000 | |
ap-southeast-3 | 4.7040000000 | |
ca-central-1 | 4.4640000000 | |
eu-central-1 | 4.6560000000 | |
eu-north-1 | 4.3680000000 | |
eu-south-1 | 4.8480000000 | |
eu-west-1 | 4.6080000000 | |
eu-west-2 | 4.8480000000 | |
eu-west-3 | 4.8480000000 | |
me-south-1 | 5.0690000000 | |
sa-east-1 | 6.2880000000 | |
us-east-1 | 4.0800000000 | |
us-east-2 | 4.0800000000 | |
us-west-1 | 5.0880000000 | |
us-west-2 | 4.0800000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 5.4720000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 5.1840000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 5.1360000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 4.6080000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 5.1360000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 4.0800000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 4.7040000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 5.3280000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 4.7040000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 4.4640000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 4.6560000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 4.3680000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 4.8480000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 4.6080000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 4.8480000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 4.8480000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 5.0690000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 6.2880000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 4.0800000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 4.0800000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 5.0880000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 4.0800000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.4560000000 | |
ap-east-1 | 0.4320000000 | |
ap-northeast-1 | 0.4280000000 | |
ap-northeast-2 | 0.3840000000 | |
ap-northeast-3 | 0.4280000000 | |
ap-south-1 | 0.3400000000 | |
ap-southeast-1 | 0.3920000000 | |
ap-southeast-2 | 0.4440000000 | |
ap-southeast-3 | 0.3920000000 | |
ca-central-1 | 0.3720000000 | |
eu-central-1 | 0.3880000000 | |
eu-north-1 | 0.3640000000 | |
eu-south-1 | 0.4040000000 | |
eu-west-1 | 0.3840000000 | |
eu-west-2 | 0.4040000000 | |
eu-west-3 | 0.4040000000 | |
me-south-1 | 0.4220000000 | |
sa-east-1 | 0.5240000000 | |
us-east-1 | 0.3400000000 | |
us-east-2 | 0.3400000000 | |
us-west-1 | 0.4240000000 | |
us-west-2 | 0.3400000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.4560000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.4320000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.4280000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.3840000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.4280000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.3400000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.3920000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.4440000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 0.3920000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.3720000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.3880000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.3640000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.4040000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.3840000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.4040000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.4040000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.4220000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.5240000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.3400000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.3400000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.4240000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.3400000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.9120000000 | |
ap-east-1 | 0.8640000000 | |
ap-northeast-1 | 0.8560000000 | |
ap-northeast-2 | 0.7680000000 | |
ap-northeast-3 | 0.8560000000 | |
ap-south-1 | 0.6800000000 | |
ap-southeast-1 | 0.7840000000 | |
ap-southeast-2 | 0.8880000000 | |
ap-southeast-3 | 0.7840000000 | |
ca-central-1 | 0.7440000000 | |
eu-central-1 | 0.7760000000 | |
eu-north-1 | 0.7280000000 | |
eu-south-1 | 0.8080000000 | |
eu-west-1 | 0.7680000000 | |
eu-west-2 | 0.8080000000 | |
eu-west-3 | 0.8080000000 | |
me-south-1 | 0.8450000000 | |
sa-east-1 | 1.0480000000 | |
us-east-1 | 0.6800000000 | |
us-east-2 | 0.6800000000 | |
us-west-1 | 0.8480000000 | |
us-west-2 | 0.6800000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.9120000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.8640000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.8560000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.7680000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.8560000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.6800000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.7840000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.8880000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 0.7840000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.7440000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.7760000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.7280000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.8080000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.7680000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.8080000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.8080000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.8450000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 1.0480000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.6800000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.6800000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.8480000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.6800000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 2.0520000000 | |
ap-east-1 | 1.9440000000 | |
ap-northeast-1 | 1.9260000000 | |
ap-northeast-2 | 1.7280000000 | |
ap-northeast-3 | 1.9260000000 | |
ap-south-1 | 1.5300000000 | |
ap-southeast-1 | 1.7640000000 | |
ap-southeast-2 | 1.9980000000 | |
ap-southeast-3 | 1.7640000000 | |
ca-central-1 | 1.6740000000 | |
eu-central-1 | 1.7460000000 | |
eu-north-1 | 1.6380000000 | |
eu-south-1 | 1.8180000000 | |
eu-west-1 | 1.7280000000 | |
eu-west-2 | 1.8180000000 | |
eu-west-3 | 1.8180000000 | |
me-south-1 | 1.9010000000 | |
sa-east-1 | 2.3580000000 | |
us-east-1 | 1.5300000000 | |
us-east-2 | 1.5300000000 | |
us-west-1 | 1.9080000000 | |
us-west-2 | 1.5300000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 2.0520000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 1.9440000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 1.9260000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 1.7280000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 1.9260000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.5300000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 1.7640000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.9980000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 1.7640000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 1.6740000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.7460000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 1.6380000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 1.8180000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.7280000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 1.8180000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 1.8180000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 1.9010000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 2.3580000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.5300000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.5300000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 1.9080000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.5300000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.1140000000 | |
ap-east-1 | 0.1080000000 | |
ap-northeast-1 | 0.1070000000 | |
ap-northeast-2 | 0.0960000000 | |
ap-northeast-3 | 0.1070000000 | |
ap-south-1 | 0.0850000000 | |
ap-southeast-1 | 0.0980000000 | |
ap-southeast-2 | 0.1110000000 | |
ap-southeast-3 | 0.0980000000 | |
ca-central-1 | 0.0930000000 | |
eu-central-1 | 0.0970000000 | |
eu-north-1 | 0.0910000000 | |
eu-south-1 | 0.1010000000 | |
eu-west-1 | 0.0960000000 | |
eu-west-2 | 0.1010000000 | |
eu-west-3 | 0.1010000000 | |
me-south-1 | 0.1060000000 | |
sa-east-1 | 0.1310000000 | |
us-east-1 | 0.0850000000 | |
us-east-2 | 0.0850000000 | |
us-west-1 | 0.1060000000 | |
us-west-2 | 0.0850000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.1140000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.1080000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.1070000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.0960000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.1070000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0850000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.0980000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.1110000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 0.0980000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.0930000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.0970000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.0910000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.1010000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.0960000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.1010000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.1010000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.1060000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.1310000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0850000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0850000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.1060000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0850000000 | |
} | |
] |
This file contains 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
af-south-1 | 5.4720000000 | |
---|---|---|
ap-east-1 | 5.1840000000 | |
ap-northeast-1 | 5.1360000000 | |
ap-northeast-2 | 4.6080000000 | |
ap-northeast-3 | 5.1360000000 | |
ap-south-1 | 4.0800000000 | |
ap-southeast-1 | 4.7040000000 | |
ap-southeast-2 | 5.3280000000 | |
ap-southeast-3 | 4.7040000000 | |
ca-central-1 | 4.4640000000 | |
eu-central-1 | 4.6560000000 | |
eu-north-1 | 4.3680000000 | |
eu-south-1 | 4.8480000000 | |
eu-west-1 | 4.6080000000 | |
eu-west-2 | 4.8480000000 | |
eu-west-3 | 4.8480000000 | |
me-south-1 | 5.0690000000 | |
sa-east-1 | 6.2880000000 | |
us-east-1 | 4.0800000000 | |
us-east-2 | 4.0800000000 | |
us-west-1 | 5.0880000000 | |
us-west-2 | 4.0800000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 5.4720000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 5.1840000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 5.1360000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 4.6080000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 5.1360000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 4.0800000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 4.7040000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 5.3280000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 4.7040000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 4.4640000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 4.6560000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 4.3680000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 4.8480000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 4.6080000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 4.8480000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 4.8480000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 5.0690000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 6.2880000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 4.0800000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 4.0800000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 5.0880000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 4.0800000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.2280000000 | |
ap-east-1 | 0.2160000000 | |
ap-northeast-1 | 0.2140000000 | |
ap-northeast-2 | 0.1920000000 | |
ap-northeast-3 | 0.2140000000 | |
ap-south-1 | 0.1700000000 | |
ap-southeast-1 | 0.1960000000 | |
ap-southeast-2 | 0.2220000000 | |
ap-southeast-3 | 0.1960000000 | |
ca-central-1 | 0.1860000000 | |
eu-central-1 | 0.1940000000 | |
eu-north-1 | 0.1820000000 | |
eu-south-1 | 0.2020000000 | |
eu-west-1 | 0.1920000000 | |
eu-west-2 | 0.2020000000 | |
eu-west-3 | 0.2020000000 | |
me-south-1 | 0.2110000000 | |
sa-east-1 | 0.2620000000 | |
us-east-1 | 0.1700000000 | |
us-east-2 | 0.1700000000 | |
us-west-1 | 0.2120000000 | |
us-west-2 | 0.1700000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.2280000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.2160000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.2140000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.1920000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.2140000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.1700000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.1960000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.2220000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 0.1960000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.1860000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.1940000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.1820000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.2020000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.1920000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.2020000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.2020000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.2110000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.2620000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1700000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1700000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.2120000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1700000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 2.4720000000 | |
ap-east-1 | 2.3280000000 | |
ap-northeast-1 | 2.3040000000 | |
ap-northeast-2 | 2.0640000000 | |
ap-south-1 | 1.1280000000 | |
ap-southeast-1 | 2.1120000000 | |
ap-southeast-2 | 2.4000000000 | |
ca-central-1 | 2.0160000000 | |
eu-central-1 | 2.0880000000 | |
eu-north-1 | 1.9680000000 | |
eu-south-1 | 2.1840000000 | |
eu-west-1 | 2.0640000000 | |
eu-west-2 | 2.1840000000 | |
eu-west-3 | 2.1840000000 | |
me-south-1 | 2.2800000000 | |
sa-east-1 | 2.8320000000 | |
us-east-1 | 1.8480000000 | |
us-east-2 | 1.8480000000 | |
us-west-1 | 2.2800000000 | |
us-west-2 | 1.8480000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 2.4720000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 2.3280000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.3040000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 2.0640000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.1280000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.1120000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 2.4000000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 2.0160000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.0880000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 1.9680000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 2.1840000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.0640000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 2.1840000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 2.1840000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 2.2800000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 2.8320000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.8480000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.8480000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 2.2800000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.8480000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 3.2960000000 | |
ap-east-1 | 3.1040000000 | |
ap-northeast-1 | 3.0720000000 | |
ap-northeast-2 | 2.7520000000 | |
ap-south-1 | 1.5040000000 | |
ap-southeast-1 | 2.8160000000 | |
ap-southeast-2 | 3.2000000000 | |
ca-central-1 | 2.6880000000 | |
eu-central-1 | 2.7840000000 | |
eu-north-1 | 2.6240000000 | |
eu-south-1 | 2.9120000000 | |
eu-west-1 | 2.7520000000 | |
eu-west-2 | 2.9120000000 | |
eu-west-3 | 2.9120000000 | |
me-south-1 | 3.0400000000 | |
sa-east-1 | 3.7760000000 | |
us-east-1 | 2.4640000000 | |
us-east-2 | 2.4640000000 | |
us-west-1 | 3.0400000000 | |
us-west-2 | 2.4640000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 3.2960000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 3.1040000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 3.0720000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 2.7520000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.5040000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.8160000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 3.2000000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 2.6880000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.7840000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 2.6240000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 2.9120000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.7520000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 2.9120000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 2.9120000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 3.0400000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 3.7760000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.4640000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.4640000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 3.0400000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.4640000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 4.9440000000 | |
ap-east-1 | 4.6560000000 | |
ap-northeast-1 | 4.6080000000 | |
ap-northeast-2 | 4.1280000000 | |
ap-south-1 | 2.2560000000 | |
ap-southeast-1 | 4.2240000000 | |
ap-southeast-2 | 4.8000000000 | |
ca-central-1 | 4.0320000000 | |
eu-central-1 | 4.1760000000 | |
eu-north-1 | 3.9360000000 | |
eu-south-1 | 4.3680000000 | |
eu-west-1 | 4.1280000000 | |
eu-west-2 | 4.3680000000 | |
eu-west-3 | 4.3680000000 | |
me-south-1 | 4.5600000000 | |
sa-east-1 | 5.6640000000 | |
us-east-1 | 3.6960000000 | |
us-east-2 | 3.6960000000 | |
us-west-1 | 4.5600000000 | |
us-west-2 | 3.6960000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 4.9440000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 4.6560000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 4.6080000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 4.1280000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 2.2560000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 4.2240000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 4.8000000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 4.0320000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 4.1760000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 3.9360000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 4.3680000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 4.1280000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 4.3680000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 4.3680000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 4.5600000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 5.6640000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 3.6960000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 3.6960000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 4.5600000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 3.6960000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.4120000000 | |
ap-east-1 | 0.3880000000 | |
ap-northeast-1 | 0.3840000000 | |
ap-northeast-2 | 0.3440000000 | |
ap-south-1 | 0.1880000000 | |
ap-southeast-1 | 0.3520000000 | |
ap-southeast-2 | 0.4000000000 | |
ca-central-1 | 0.3360000000 | |
eu-central-1 | 0.3480000000 | |
eu-north-1 | 0.3280000000 | |
eu-south-1 | 0.3640000000 | |
eu-west-1 | 0.3440000000 | |
eu-west-2 | 0.3640000000 | |
eu-west-3 | 0.3640000000 | |
me-south-1 | 0.3800000000 | |
sa-east-1 | 0.4720000000 | |
us-east-1 | 0.3080000000 | |
us-east-2 | 0.3080000000 | |
us-west-1 | 0.3800000000 | |
us-west-2 | 0.3080000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.4120000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.3880000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.3840000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.3440000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.1880000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.3520000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.4000000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.3360000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.3480000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.3280000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.3640000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.3440000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.3640000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.3640000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.3800000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.4720000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.3080000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.3080000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.3800000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.3080000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.8240000000 | |
ap-east-1 | 0.7760000000 | |
ap-northeast-1 | 0.7680000000 | |
ap-northeast-2 | 0.6880000000 | |
ap-south-1 | 0.3760000000 | |
ap-southeast-1 | 0.7040000000 | |
ap-southeast-2 | 0.8000000000 | |
ca-central-1 | 0.6720000000 | |
eu-central-1 | 0.6960000000 | |
eu-north-1 | 0.6560000000 | |
eu-south-1 | 0.7280000000 | |
eu-west-1 | 0.6880000000 | |
eu-west-2 | 0.7280000000 | |
eu-west-3 | 0.7280000000 | |
me-south-1 | 0.7600000000 | |
sa-east-1 | 0.9440000000 | |
us-east-1 | 0.6160000000 | |
us-east-2 | 0.6160000000 | |
us-west-1 | 0.7600000000 | |
us-west-2 | 0.6160000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.8240000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.7760000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.7680000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.6880000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.3760000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.7040000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.8000000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.6720000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.6960000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.6560000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.7280000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.6880000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.7280000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.7280000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.7600000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.9440000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.6160000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.6160000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.7600000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.6160000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 1.6480000000 | |
ap-east-1 | 1.5520000000 | |
ap-northeast-1 | 1.5360000000 | |
ap-northeast-2 | 1.3760000000 | |
ap-south-1 | 0.7520000000 | |
ap-southeast-1 | 1.4080000000 | |
ap-southeast-2 | 1.6000000000 | |
ca-central-1 | 1.3440000000 | |
eu-central-1 | 1.3920000000 | |
eu-north-1 | 1.3120000000 | |
eu-south-1 | 1.4560000000 | |
eu-west-1 | 1.3760000000 | |
eu-west-2 | 1.4560000000 | |
eu-west-3 | 1.4560000000 | |
me-south-1 | 1.5200000000 | |
sa-east-1 | 1.8880000000 | |
us-east-1 | 1.2320000000 | |
us-east-2 | 1.2320000000 | |
us-west-1 | 1.5200000000 | |
us-west-2 | 1.2320000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 1.6480000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 1.5520000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 1.5360000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 1.3760000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.7520000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 1.4080000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.6000000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 1.3440000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.3920000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 1.3120000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 1.4560000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.3760000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 1.4560000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 1.4560000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 1.5200000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 1.8880000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.2320000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.2320000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 1.5200000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.2320000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.1030000000 | |
ap-east-1 | 0.0970000000 | |
ap-northeast-1 | 0.0960000000 | |
ap-northeast-2 | 0.0860000000 | |
ap-south-1 | 0.0470000000 | |
ap-southeast-1 | 0.0880000000 | |
ap-southeast-2 | 0.1000000000 | |
ca-central-1 | 0.0840000000 | |
eu-central-1 | 0.0870000000 | |
eu-north-1 | 0.0820000000 | |
eu-south-1 | 0.0910000000 | |
eu-west-1 | 0.0860000000 | |
eu-west-2 | 0.0910000000 | |
eu-west-3 | 0.0910000000 | |
me-south-1 | 0.0950000000 | |
sa-east-1 | 0.1180000000 | |
us-east-1 | 0.0770000000 | |
us-east-2 | 0.0770000000 | |
us-west-1 | 0.0950000000 | |
us-west-2 | 0.0770000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.1030000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.0970000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.0960000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.0860000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0470000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.0880000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.1000000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.0840000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.0870000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.0820000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.0910000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.0860000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.0910000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.0910000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.0950000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.1180000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0770000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0770000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.0950000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0770000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.2060000000 | |
ap-east-1 | 0.1940000000 | |
ap-northeast-1 | 0.1920000000 | |
ap-northeast-2 | 0.1720000000 | |
ap-south-1 | 0.0940000000 | |
ap-southeast-1 | 0.1760000000 | |
ap-southeast-2 | 0.2000000000 | |
ca-central-1 | 0.1680000000 | |
eu-central-1 | 0.1740000000 | |
eu-north-1 | 0.1640000000 | |
eu-south-1 | 0.1820000000 | |
eu-west-1 | 0.1720000000 | |
eu-west-2 | 0.1820000000 | |
eu-west-3 | 0.1820000000 | |
me-south-1 | 0.1900000000 | |
sa-east-1 | 0.2360000000 | |
us-east-1 | 0.1540000000 | |
us-east-2 | 0.1540000000 | |
us-west-1 | 0.1900000000 | |
us-west-2 | 0.1540000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.2060000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.1940000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.1920000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.1720000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0940000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.1760000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.2000000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.1680000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.1740000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.1640000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.1820000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.1720000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.1820000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.1820000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.1900000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.2360000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1540000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1540000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.1900000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1540000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 2.8080000000 | |
ap-southeast-1 | 2.4240000000 | |
ap-southeast-2 | 2.7120000000 | |
eu-central-1 | 2.4000000000 | |
eu-south-1 | 2.4720000000 | |
eu-west-1 | 2.3520000000 | |
me-south-1 | 2.5920000000 | |
sa-east-1 | 3.2160000000 | |
us-east-1 | 2.0640000000 | |
us-east-2 | 2.0640000000 | |
us-west-2 | 2.0640000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 2.8080000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.4240000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 2.7120000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.4000000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 2.4720000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.3520000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 2.5920000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 3.2160000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.0640000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.0640000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.0640000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 3.7440000000 | |
ap-southeast-1 | 3.2320000000 | |
ap-southeast-2 | 3.6160000000 | |
eu-central-1 | 3.2000000000 | |
eu-south-1 | 3.2960000000 | |
eu-west-1 | 3.1360000000 | |
me-south-1 | 3.4560000000 | |
sa-east-1 | 4.2880000000 | |
us-east-1 | 2.7520000000 | |
us-east-2 | 2.7520000000 | |
us-west-2 | 2.7520000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 3.7440000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 3.2320000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 3.6160000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 3.2000000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 3.2960000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 3.1360000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 3.4560000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 4.2880000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.7520000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.7520000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.7520000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 5.6160000000 | |
ap-southeast-1 | 4.8480000000 | |
ap-southeast-2 | 5.4240000000 | |
eu-central-1 | 4.8000000000 | |
eu-south-1 | 4.9440000000 | |
eu-west-1 | 4.7040000000 | |
me-south-1 | 5.1840000000 | |
sa-east-1 | 6.4320000000 | |
us-east-1 | 4.1280000000 | |
us-east-2 | 4.1280000000 | |
us-west-2 | 4.1280000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 5.6160000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 4.8480000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 5.4240000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 4.8000000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 4.9440000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 4.7040000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 5.1840000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 6.4320000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 4.1280000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 4.1280000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 4.1280000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.4680000000 | |
ap-southeast-1 | 0.4040000000 | |
ap-southeast-2 | 0.4520000000 | |
eu-central-1 | 0.4000000000 | |
eu-south-1 | 0.4120000000 | |
eu-west-1 | 0.3920000000 | |
me-south-1 | 0.4320000000 | |
sa-east-1 | 0.5360000000 | |
us-east-1 | 0.3440000000 | |
us-east-2 | 0.3440000000 | |
us-west-2 | 0.3440000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.4680000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.4040000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.4520000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.4000000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.4120000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.3920000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.4320000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.5360000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.3440000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.3440000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.3440000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.9360000000 | |
ap-southeast-1 | 0.8080000000 | |
ap-southeast-2 | 0.9040000000 | |
eu-central-1 | 0.8000000000 | |
eu-south-1 | 0.8240000000 | |
eu-west-1 | 0.7840000000 | |
me-south-1 | 0.8640000000 | |
sa-east-1 | 1.0720000000 | |
us-east-1 | 0.6880000000 | |
us-east-2 | 0.6880000000 | |
us-west-2 | 0.6880000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.9360000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.8080000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.9040000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.8000000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.8240000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.7840000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.8640000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 1.0720000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.6880000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.6880000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.6880000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 1.8720000000 | |
ap-southeast-1 | 1.6160000000 | |
ap-southeast-2 | 1.8080000000 | |
eu-central-1 | 1.6000000000 | |
eu-south-1 | 1.6480000000 | |
eu-west-1 | 1.5680000000 | |
me-south-1 | 1.7280000000 | |
sa-east-1 | 2.1440000000 | |
us-east-1 | 1.3760000000 | |
us-east-2 | 1.3760000000 | |
us-west-2 | 1.3760000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 1.8720000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 1.6160000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.8080000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.6000000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 1.6480000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.5680000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 1.7280000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 2.1440000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.3760000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.3760000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.3760000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.1170000000 | |
ap-southeast-1 | 0.1010000000 | |
ap-southeast-2 | 0.1130000000 | |
eu-central-1 | 0.1000000000 | |
eu-south-1 | 0.1030000000 | |
eu-west-1 | 0.0980000000 | |
me-south-1 | 0.1080000000 | |
sa-east-1 | 0.1340000000 | |
us-east-1 | 0.0860000000 | |
us-east-2 | 0.0860000000 | |
us-west-2 | 0.0860000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.1170000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.1010000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.1130000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.1000000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.1030000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.0980000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.1080000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.1340000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0860000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0860000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0860000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.2340000000 | |
ap-southeast-1 | 0.2020000000 | |
ap-southeast-2 | 0.2260000000 | |
eu-central-1 | 0.2000000000 | |
eu-south-1 | 0.2060000000 | |
eu-west-1 | 0.1960000000 | |
me-south-1 | 0.2160000000 | |
sa-east-1 | 0.2680000000 | |
us-east-1 | 0.1720000000 | |
us-east-2 | 0.1720000000 | |
us-west-2 | 0.1720000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.2340000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.2020000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.2260000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.2000000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.2060000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.1960000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.2160000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.2680000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1720000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1720000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1720000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 3.1200000000 | |
ap-northeast-1 | 2.9280000000 | |
ap-northeast-2 | 2.6400000000 | |
ap-northeast-3 | 2.9280000000 | |
ap-south-1 | 2.3760000000 | |
ap-southeast-1 | 2.6880000000 | |
ap-southeast-2 | 3.0240000000 | |
ap-southeast-3 | 2.6880000000 | |
ca-central-1 | 2.5440000000 | |
eu-central-1 | 2.6640000000 | |
eu-north-1 | 2.4960000000 | |
eu-south-1 | 2.7360000000 | |
eu-west-1 | 2.6160000000 | |
eu-west-2 | 2.7600000000 | |
me-south-1 | 2.8780000000 | |
sa-east-1 | 3.5760000000 | |
us-east-1 | 2.3040000000 | |
us-east-2 | 2.3040000000 | |
us-west-1 | 2.8800000000 | |
us-west-2 | 2.3040000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 3.1200000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.9280000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 2.6400000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 2.9280000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 2.3760000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.6880000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 3.0240000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 2.6880000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 2.5440000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.6640000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 2.4960000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 2.7360000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.6160000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 2.7600000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 2.8780000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 3.5760000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.3040000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.3040000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 2.8800000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.3040000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 4.6800000000 | |
ap-east-1 | 4.4280000000 | |
ap-northeast-1 | 4.3920000000 | |
ap-northeast-2 | 3.9600000000 | |
ap-northeast-3 | 4.3920000000 | |
ap-south-1 | 3.5640000000 | |
ap-southeast-1 | 4.0320000000 | |
ap-southeast-2 | 4.5360000000 | |
ap-southeast-3 | 4.0320000000 | |
ca-central-1 | 3.8160000000 | |
eu-central-1 | 3.9960000000 | |
eu-north-1 | 3.7440000000 | |
eu-south-1 | 4.1040000000 | |
eu-west-1 | 3.9240000000 | |
eu-west-2 | 4.1400000000 | |
eu-west-3 | 4.1400000000 | |
me-south-1 | 4.3160000000 | |
sa-east-1 | 5.3640000000 | |
us-east-1 | 3.4560000000 | |
us-east-2 | 3.4560000000 | |
us-west-1 | 4.3200000000 | |
us-west-2 | 3.4560000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 4.6800000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 4.4280000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 4.3920000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 3.9600000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 4.3920000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 3.5640000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 4.0320000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 4.5360000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 4.0320000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 3.8160000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 3.9960000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 3.7440000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 4.1040000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 3.9240000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 4.1400000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 4.1400000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 4.3160000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 5.3640000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 3.4560000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 3.4560000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 4.3200000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 3.4560000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 6.2400000000 | |
ap-northeast-1 | 5.8560000000 | |
ap-northeast-2 | 5.2800000000 | |
ap-northeast-3 | 5.8560000000 | |
ap-south-1 | 4.7520000000 | |
ap-southeast-1 | 5.3760000000 | |
ap-southeast-2 | 6.0480000000 | |
ap-southeast-3 | 5.3760000000 | |
ca-central-1 | 5.0880000000 | |
eu-central-1 | 5.3280000000 | |
eu-north-1 | 4.9920000000 | |
eu-south-1 | 5.4720000000 | |
eu-west-1 | 5.2320000000 | |
eu-west-2 | 5.5200000000 | |
me-south-1 | 5.7550000000 | |
sa-east-1 | 7.1520000000 | |
us-east-1 | 4.6080000000 | |
us-east-2 | 4.6080000000 | |
us-west-1 | 5.7600000000 | |
us-west-2 | 4.6080000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 6.2400000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 5.8560000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 5.2800000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 5.8560000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 4.7520000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 5.3760000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 6.0480000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 5.3760000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 5.0880000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 5.3280000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 4.9920000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 5.4720000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 5.2320000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 5.5200000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 5.7550000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 7.1520000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 4.6080000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 4.6080000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 5.7600000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 4.6080000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.5200000000 | |
ap-east-1 | 0.4920000000 | |
ap-northeast-1 | 0.4880000000 | |
ap-northeast-2 | 0.4400000000 | |
ap-northeast-3 | 0.4880000000 | |
ap-south-1 | 0.3960000000 | |
ap-southeast-1 | 0.4480000000 | |
ap-southeast-2 | 0.5040000000 | |
ap-southeast-3 | 0.4480000000 | |
ca-central-1 | 0.4240000000 | |
eu-central-1 | 0.4440000000 | |
eu-north-1 | 0.4160000000 | |
eu-south-1 | 0.4560000000 | |
eu-west-1 | 0.4360000000 | |
eu-west-2 | 0.4600000000 | |
eu-west-3 | 0.4600000000 | |
me-south-1 | 0.4800000000 | |
sa-east-1 | 0.5960000000 | |
us-east-1 | 0.3840000000 | |
us-east-2 | 0.3840000000 | |
us-west-1 | 0.4800000000 | |
us-west-2 | 0.3840000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.5200000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.4920000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.4880000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.4400000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.4880000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.3960000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.4480000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.5040000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 0.4480000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.4240000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.4440000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.4160000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.4560000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.4360000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.4600000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.4600000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.4800000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.5960000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.3840000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.3840000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.4800000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.3840000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 1.0400000000 | |
ap-east-1 | 0.9840000000 | |
ap-northeast-1 | 0.9760000000 | |
ap-northeast-2 | 0.8800000000 | |
ap-northeast-3 | 0.9760000000 | |
ap-south-1 | 0.7920000000 | |
ap-southeast-1 | 0.8960000000 | |
ap-southeast-2 | 1.0080000000 | |
ap-southeast-3 | 0.8960000000 | |
ca-central-1 | 0.8480000000 | |
eu-central-1 | 0.8880000000 | |
eu-north-1 | 0.8320000000 | |
eu-south-1 | 0.9120000000 | |
eu-west-1 | 0.8720000000 | |
eu-west-2 | 0.9200000000 | |
eu-west-3 | 0.9200000000 | |
me-south-1 | 0.9590000000 | |
sa-east-1 | 1.1920000000 | |
us-east-1 | 0.7680000000 | |
us-east-2 | 0.7680000000 | |
us-west-1 | 0.9600000000 | |
us-west-2 | 0.7680000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 1.0400000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.9840000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.9760000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.8800000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.9760000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.7920000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.8960000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.0080000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 0.8960000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.8480000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.8880000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.8320000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.9120000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.8720000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.9200000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.9200000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.9590000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 1.1920000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.7680000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.7680000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.9600000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.7680000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 2.3400000000 | |
ap-east-1 | 2.2140000000 | |
ap-northeast-1 | 2.1960000000 | |
ap-northeast-2 | 1.9800000000 | |
ap-northeast-3 | 2.1960000000 | |
ap-south-1 | 1.7820000000 | |
ap-southeast-1 | 2.0160000000 | |
ap-southeast-2 | 2.2680000000 | |
ap-southeast-3 | 2.0160000000 | |
ca-central-1 | 1.9080000000 | |
eu-central-1 | 1.9980000000 | |
eu-north-1 | 1.8720000000 | |
eu-south-1 | 2.0520000000 | |
eu-west-1 | 1.9620000000 | |
eu-west-2 | 2.0700000000 | |
eu-west-3 | 2.0700000000 | |
me-south-1 | 2.1580000000 | |
sa-east-1 | 2.6820000000 | |
us-east-1 | 1.7280000000 | |
us-east-2 | 1.7280000000 | |
us-west-1 | 2.1600000000 | |
us-west-2 | 1.7280000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 2.3400000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 2.2140000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.1960000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 1.9800000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 2.1960000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.7820000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.0160000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 2.2680000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 2.0160000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 1.9080000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.9980000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 1.8720000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 2.0520000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.9620000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 2.0700000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 2.0700000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 2.1580000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 2.6820000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.7280000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.7280000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 2.1600000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.7280000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.1300000000 | |
ap-east-1 | 0.1230000000 | |
ap-northeast-1 | 0.1220000000 | |
ap-northeast-2 | 0.1100000000 | |
ap-northeast-3 | 0.1220000000 | |
ap-south-1 | 0.0990000000 | |
ap-southeast-1 | 0.1120000000 | |
ap-southeast-2 | 0.1260000000 | |
ap-southeast-3 | 0.1120000000 | |
ca-central-1 | 0.1060000000 | |
eu-central-1 | 0.1110000000 | |
eu-north-1 | 0.1040000000 | |
eu-south-1 | 0.1140000000 | |
eu-west-1 | 0.1090000000 | |
eu-west-2 | 0.1150000000 | |
eu-west-3 | 0.1150000000 | |
me-south-1 | 0.1200000000 | |
sa-east-1 | 0.1490000000 | |
us-east-1 | 0.0960000000 | |
us-east-2 | 0.0960000000 | |
us-west-1 | 0.1200000000 | |
us-west-2 | 0.0960000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.1300000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.1230000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.1220000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.1100000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.1220000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0990000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.1120000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.1260000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 0.1120000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.1060000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.1110000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.1040000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.1140000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.1090000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.1150000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.1150000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.1200000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.1490000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0960000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0960000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.1200000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0960000000 | |
} | |
] |
This file contains 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
af-south-1 | 6.2400000000 | |
---|---|---|
ap-northeast-1 | 5.8560000000 | |
ap-northeast-2 | 5.2800000000 | |
ap-northeast-3 | 5.8560000000 | |
ap-south-1 | 4.7520000000 | |
ap-southeast-1 | 5.3760000000 | |
ap-southeast-2 | 6.0480000000 | |
ap-southeast-3 | 5.3760000000 | |
ca-central-1 | 5.0880000000 | |
eu-central-1 | 5.3280000000 | |
eu-north-1 | 4.9920000000 | |
eu-south-1 | 5.4720000000 | |
eu-west-1 | 5.2320000000 | |
eu-west-2 | 5.5200000000 | |
me-south-1 | 5.7550000000 | |
sa-east-1 | 7.1520000000 | |
us-east-1 | 4.6080000000 | |
us-east-2 | 4.6080000000 | |
us-west-1 | 5.7600000000 | |
us-west-2 | 4.6080000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 6.2400000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 5.8560000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 5.2800000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 5.8560000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 4.7520000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 5.3760000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 6.0480000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 5.3760000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 5.0880000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 5.3280000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 4.9920000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 5.4720000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 5.2320000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 5.5200000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 5.7550000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 7.1520000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 4.6080000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 4.6080000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 5.7600000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 4.6080000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.2600000000 | |
ap-east-1 | 0.2460000000 | |
ap-northeast-1 | 0.2440000000 | |
ap-northeast-2 | 0.2200000000 | |
ap-northeast-3 | 0.2440000000 | |
ap-south-1 | 0.1980000000 | |
ap-southeast-1 | 0.2240000000 | |
ap-southeast-2 | 0.2520000000 | |
ap-southeast-3 | 0.2240000000 | |
ca-central-1 | 0.2120000000 | |
eu-central-1 | 0.2220000000 | |
eu-north-1 | 0.2080000000 | |
eu-south-1 | 0.2280000000 | |
eu-west-1 | 0.2180000000 | |
eu-west-2 | 0.2300000000 | |
eu-west-3 | 0.2300000000 | |
me-south-1 | 0.2400000000 | |
sa-east-1 | 0.2980000000 | |
us-east-1 | 0.1920000000 | |
us-east-2 | 0.1920000000 | |
us-west-1 | 0.2400000000 | |
us-west-2 | 0.1920000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.2600000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.2460000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.2440000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.2200000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.2440000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.1980000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.2240000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.2520000000 | |
}, | |
{ | |
"region": "ap-southeast-3", | |
"price": 0.2240000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.2120000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.2220000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.2080000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.2280000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.2180000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.2300000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.2300000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.2400000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.2980000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1920000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1920000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.2400000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1920000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 5.2270000000 | |
ap-east-1 | 5.1480000000 | |
ap-northeast-1 | 4.8960000000 | |
ap-northeast-2 | 4.3920000000 | |
ap-south-1 | 3.8880000000 | |
ap-southeast-1 | 4.4640000000 | |
ap-southeast-2 | 5.0760000000 | |
ca-central-1 | 4.2480000000 | |
eu-central-1 | 4.4280000000 | |
eu-north-1 | 4.1760000000 | |
eu-south-1 | 4.6440000000 | |
eu-west-1 | 4.3920000000 | |
eu-west-2 | 4.6080000000 | |
eu-west-3 | 4.6080000000 | |
me-south-1 | 4.8240000000 | |
sa-east-1 | 5.9760000000 | |
us-east-1 | 3.8880000000 | |
us-east-2 | 3.8880000000 | |
us-west-1 | 4.8600000000 | |
us-west-2 | 3.8880000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 5.2270000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 5.1480000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 4.8960000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 4.3920000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 3.8880000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 4.4640000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 5.0760000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 4.2480000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 4.4280000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 4.1760000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 4.6440000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 4.3920000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 4.6080000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 4.6080000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 4.8240000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 5.9760000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 3.8880000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 3.8880000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 4.8600000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 3.8880000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.5810000000 | |
ap-east-1 | 0.5720000000 | |
ap-northeast-1 | 0.5440000000 | |
ap-northeast-2 | 0.4880000000 | |
ap-south-1 | 0.4320000000 | |
ap-southeast-1 | 0.4960000000 | |
ap-southeast-2 | 0.5640000000 | |
ca-central-1 | 0.4720000000 | |
eu-central-1 | 0.4920000000 | |
eu-north-1 | 0.4640000000 | |
eu-south-1 | 0.5160000000 | |
eu-west-1 | 0.4880000000 | |
eu-west-2 | 0.5120000000 | |
eu-west-3 | 0.5120000000 | |
me-south-1 | 0.5360000000 | |
sa-east-1 | 0.6640000000 | |
us-east-1 | 0.4320000000 | |
us-east-2 | 0.4320000000 | |
us-west-1 | 0.5400000000 | |
us-west-2 | 0.4320000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.5810000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.5720000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.5440000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.4880000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.4320000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.4960000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.5640000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.4720000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.4920000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.4640000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.5160000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.4880000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.5120000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.5120000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.5360000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.6640000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.4320000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.4320000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.5400000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.4320000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 1.1620000000 | |
ap-east-1 | 1.1440000000 | |
ap-northeast-1 | 1.0880000000 | |
ap-northeast-2 | 0.9760000000 | |
ap-south-1 | 0.8640000000 | |
ap-southeast-1 | 0.9920000000 | |
ap-southeast-2 | 1.1280000000 | |
ca-central-1 | 0.9440000000 | |
eu-central-1 | 0.9840000000 | |
eu-north-1 | 0.9280000000 | |
eu-south-1 | 1.0320000000 | |
eu-west-1 | 0.9760000000 | |
eu-west-2 | 1.0240000000 | |
eu-west-3 | 1.0240000000 | |
me-south-1 | 1.0720000000 | |
sa-east-1 | 1.3280000000 | |
us-east-1 | 0.8640000000 | |
us-east-2 | 0.8640000000 | |
us-west-1 | 1.0800000000 | |
us-west-2 | 0.8640000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 1.1620000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 1.1440000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 1.0880000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.9760000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.8640000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.9920000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.1280000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.9440000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.9840000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.9280000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 1.0320000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.9760000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 1.0240000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 1.0240000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 1.0720000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 1.3280000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.8640000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.8640000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 1.0800000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.8640000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 2.6140000000 | |
ap-east-1 | 2.5740000000 | |
ap-northeast-1 | 2.4480000000 | |
ap-northeast-2 | 2.1960000000 | |
ap-south-1 | 1.9440000000 | |
ap-southeast-1 | 2.2320000000 | |
ap-southeast-2 | 2.5380000000 | |
ca-central-1 | 2.1240000000 | |
eu-central-1 | 2.2140000000 | |
eu-north-1 | 2.0880000000 | |
eu-south-1 | 2.3220000000 | |
eu-west-1 | 2.1960000000 | |
eu-west-2 | 2.3040000000 | |
eu-west-3 | 2.3040000000 | |
me-south-1 | 2.4120000000 | |
sa-east-1 | 2.9880000000 | |
us-east-1 | 1.9440000000 | |
us-east-2 | 1.9440000000 | |
us-west-1 | 2.4300000000 | |
us-west-2 | 1.9440000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 2.6140000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 2.5740000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.4480000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 2.1960000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.9440000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.2320000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 2.5380000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 2.1240000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.2140000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 2.0880000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 2.3220000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.1960000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 2.3040000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 2.3040000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 2.4120000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 2.9880000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.9440000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.9440000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 2.4300000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.9440000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.1450000000 | |
ap-east-1 | 0.1430000000 | |
ap-northeast-1 | 0.1360000000 | |
ap-northeast-2 | 0.1220000000 | |
ap-south-1 | 0.1080000000 | |
ap-southeast-1 | 0.1240000000 | |
ap-southeast-2 | 0.1410000000 | |
ca-central-1 | 0.1180000000 | |
eu-central-1 | 0.1230000000 | |
eu-north-1 | 0.1160000000 | |
eu-south-1 | 0.1290000000 | |
eu-west-1 | 0.1220000000 | |
eu-west-2 | 0.1280000000 | |
eu-west-3 | 0.1280000000 | |
me-south-1 | 0.1340000000 | |
sa-east-1 | 0.1660000000 | |
us-east-1 | 0.1080000000 | |
us-east-2 | 0.1080000000 | |
us-west-1 | 0.1350000000 | |
us-west-2 | 0.1080000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.1450000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.1430000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.1360000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.1220000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.1080000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.1240000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.1410000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.1180000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.1230000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.1160000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.1290000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.1220000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.1280000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.1280000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.1340000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.1660000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1080000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1080000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.1350000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1080000000 | |
} | |
] |
This file contains 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
af-south-1 | 5.2270000000 | |
---|---|---|
ap-east-1 | 5.1480000000 | |
ap-northeast-1 | 4.8960000000 | |
ap-northeast-2 | 4.3920000000 | |
ap-south-1 | 3.8880000000 | |
ap-southeast-1 | 4.4640000000 | |
ap-southeast-2 | 5.0760000000 | |
ca-central-1 | 4.2480000000 | |
eu-central-1 | 4.4280000000 | |
eu-north-1 | 4.1760000000 | |
eu-south-1 | 4.6440000000 | |
eu-west-1 | 4.3920000000 | |
eu-west-2 | 4.6080000000 | |
eu-west-3 | 4.6080000000 | |
me-south-1 | 4.8240000000 | |
sa-east-1 | 5.9760000000 | |
us-east-1 | 3.8880000000 | |
us-east-2 | 3.8880000000 | |
us-west-1 | 4.8600000000 | |
us-west-2 | 3.8880000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 5.2270000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 5.1480000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 4.8960000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 4.3920000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 3.8880000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 4.4640000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 5.0760000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 4.2480000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 4.4280000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 4.1760000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 4.6440000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 4.3920000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 4.6080000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 4.6080000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 4.8240000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 5.9760000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 3.8880000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 3.8880000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 4.8600000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 3.8880000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.2900000000 | |
ap-east-1 | 0.2860000000 | |
ap-northeast-1 | 0.2720000000 | |
ap-northeast-2 | 0.2440000000 | |
ap-south-1 | 0.2160000000 | |
ap-southeast-1 | 0.2480000000 | |
ap-southeast-2 | 0.2820000000 | |
ca-central-1 | 0.2360000000 | |
eu-central-1 | 0.2460000000 | |
eu-north-1 | 0.2320000000 | |
eu-south-1 | 0.2580000000 | |
eu-west-1 | 0.2440000000 | |
eu-west-2 | 0.2560000000 | |
eu-west-3 | 0.2560000000 | |
me-south-1 | 0.2680000000 | |
sa-east-1 | 0.3320000000 | |
us-east-1 | 0.2160000000 | |
us-east-2 | 0.2160000000 | |
us-west-1 | 0.2700000000 | |
us-west-2 | 0.2160000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.2900000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.2860000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.2720000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.2440000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.2160000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.2480000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.2820000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.2360000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.2460000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.2320000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.2580000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.2440000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.2560000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.2560000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.2680000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.3320000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.2160000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.2160000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.2700000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.2160000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-south-1 | 1.1220000000 | |
eu-central-1 | 2.0952000000 | |
eu-west-1 | 1.9699200000 | |
us-east-1 | 1.8360000000 | |
us-east-2 | 1.8360000000 | |
us-west-2 | 1.8360000000 |
This file contains 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
[ | |
{ | |
"region": "ap-south-1", | |
"price": 1.1220000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.0952000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.9699200000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.8360000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.8360000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.8360000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-south-1 | 1.4960000000 | |
eu-central-1 | 2.7936000000 | |
eu-west-1 | 2.6265600000 | |
us-east-1 | 2.4480000000 | |
us-east-2 | 2.4480000000 | |
us-west-2 | 2.4480000000 |
This file contains 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
[ | |
{ | |
"region": "ap-south-1", | |
"price": 1.4960000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.7936000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.6265600000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.4480000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.4480000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.4480000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-south-1 | 2.2440000000 | |
eu-central-1 | 4.1904000000 | |
eu-west-1 | 3.9398400000 | |
us-east-1 | 3.6720000000 | |
us-east-2 | 3.6720000000 | |
us-west-2 | 3.6720000000 |
This file contains 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
[ | |
{ | |
"region": "ap-south-1", | |
"price": 2.2440000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 4.1904000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 3.9398400000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 3.6720000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 3.6720000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 3.6720000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-south-1 | 0.1870000000 | |
eu-central-1 | 0.3492000000 | |
eu-west-1 | 0.3283200000 | |
us-east-1 | 0.3060000000 | |
us-east-2 | 0.3060000000 | |
us-west-2 | 0.3060000000 |
This file contains 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
[ | |
{ | |
"region": "ap-south-1", | |
"price": 0.1870000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.3492000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.3283200000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.3060000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.3060000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.3060000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-south-1 | 2.9920000000 | |
eu-central-1 | 5.5872000000 | |
eu-west-1 | 5.2531200000 | |
us-east-1 | 4.8960000000 | |
us-east-2 | 4.8960000000 | |
us-west-2 | 4.8960000000 |
This file contains 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
[ | |
{ | |
"region": "ap-south-1", | |
"price": 2.9920000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 5.5872000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 5.2531200000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 4.8960000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 4.8960000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 4.8960000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-south-1 | 4.4880000000 | |
eu-central-1 | 8.3808000000 | |
eu-west-1 | 7.8796800000 | |
us-east-1 | 7.3440000000 | |
us-east-2 | 7.3440000000 | |
us-west-2 | 7.3440000000 | |
eu-north-1 | 3.0930000000 | |
us-east-2 | 2.8800000000 |
This file contains 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
[ | |
{ | |
"region": "ap-south-1", | |
"price": 4.4880000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 8.3808000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 7.8796800000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 7.3440000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 7.3440000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 7.3440000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 3.0930000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.8800000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-south-1 | 0.3740000000 | |
eu-central-1 | 0.6984000000 | |
eu-west-1 | 0.6566400000 | |
us-east-1 | 0.6120000000 | |
us-east-2 | 0.6120000000 | |
us-west-2 | 0.6120000000 |
This file contains 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
[ | |
{ | |
"region": "ap-south-1", | |
"price": 0.3740000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.6984000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.6566400000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.6120000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.6120000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.6120000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-south-1 | 0.7480000000 | |
eu-central-1 | 1.3968000000 | |
eu-west-1 | 1.3132800000 | |
us-east-1 | 1.2240000000 | |
us-east-2 | 1.2240000000 | |
us-west-2 | 1.2240000000 |
This file contains 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
[ | |
{ | |
"region": "ap-south-1", | |
"price": 0.7480000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.3968000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.3132800000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.2240000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.2240000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.2240000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-south-1 | 0.0467500000 | |
eu-central-1 | 0.0873000000 | |
eu-west-1 | 0.0820800000 | |
us-east-1 | 0.0765000000 | |
us-east-2 | 0.0765000000 | |
us-west-2 | 0.0765000000 |
This file contains 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
[ | |
{ | |
"region": "ap-south-1", | |
"price": 0.0467500000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.0873000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.0820800000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0765000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0765000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0765000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-south-1 | 4.4880000000 | |
eu-central-1 | 8.3808000000 | |
eu-west-1 | 7.8796800000 | |
us-east-1 | 7.3440000000 | |
us-east-2 | 7.3440000000 | |
us-west-2 | 7.3440000000 |
This file contains 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
[ | |
{ | |
"region": "ap-south-1", | |
"price": 4.4880000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 8.3808000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 7.8796800000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 7.3440000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 7.3440000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 7.3440000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-south-1 | 0.0935000000 | |
eu-central-1 | 0.1746000000 | |
eu-west-1 | 0.1641600000 | |
us-east-1 | 0.1530000000 | |
us-east-2 | 0.1530000000 | |
us-west-2 | 0.1530000000 |
This file contains 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
[ | |
{ | |
"region": "ap-south-1", | |
"price": 0.0935000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.1746000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.1641600000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1530000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1530000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1530000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 2.0640000000 | |
ap-northeast-1 | 2.0544000000 | |
ap-northeast-2 | 1.8480000000 | |
ap-south-1 | 1.0224000000 | |
ap-southeast-1 | 1.8816000000 | |
ap-southeast-2 | 2.1312000000 | |
ca-central-1 | 1.7856000000 | |
eu-central-1 | 1.8624000000 | |
eu-north-1 | 1.7520000000 | |
eu-south-1 | 1.9392000000 | |
eu-west-1 | 1.7510000000 | |
eu-west-2 | 1.9392000000 | |
eu-west-3 | 1.9440000000 | |
me-south-1 | 2.0400000000 | |
sa-east-1 | 2.5152000000 | |
us-east-1 | 1.6320000000 | |
us-east-2 | 1.6320000000 | |
us-west-1 | 2.0352000000 | |
us-west-2 | 1.6320000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 2.0640000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.0544000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 1.8480000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.0224000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 1.8816000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 2.1312000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 1.7856000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.8624000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 1.7520000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 1.9392000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.7510000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 1.9392000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 1.9440000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 2.0400000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 2.5152000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.6320000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.6320000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 2.0352000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.6320000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 2.7520000000 | |
ap-northeast-1 | 2.7392000000 | |
ap-northeast-2 | 2.4640000000 | |
ap-south-1 | 1.3632000000 | |
ap-southeast-1 | 2.5088000000 | |
ap-southeast-2 | 2.8416000000 | |
ca-central-1 | 2.3808000000 | |
eu-central-1 | 2.4832000000 | |
eu-north-1 | 2.3360000000 | |
eu-south-1 | 2.5856000000 | |
eu-west-1 | 2.3347000000 | |
eu-west-2 | 2.5856000000 | |
eu-west-3 | 2.5920000000 | |
me-south-1 | 2.7200000000 | |
sa-east-1 | 3.3536000000 | |
us-east-1 | 2.1760000000 | |
us-east-2 | 2.1760000000 | |
us-west-1 | 2.7136000000 | |
us-west-2 | 2.1760000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 2.7520000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.7392000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 2.4640000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.3632000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.5088000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 2.8416000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 2.3808000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.4832000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 2.3360000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 2.5856000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.3347000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 2.5856000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 2.5920000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 2.7200000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 3.3536000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.1760000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.1760000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 2.7136000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.1760000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 0.3440000000 | |
ap-northeast-1 | 0.3424000000 | |
ap-northeast-2 | 0.3080000000 | |
ap-south-1 | 0.1704000000 | |
ap-southeast-1 | 0.3136000000 | |
ap-southeast-2 | 0.3552000000 | |
ca-central-1 | 0.2976000000 | |
eu-central-1 | 0.3104000000 | |
eu-north-1 | 0.2920000000 | |
eu-south-1 | 0.3232000000 | |
eu-west-1 | 0.2918000000 | |
eu-west-2 | 0.3232000000 | |
eu-west-3 | 0.3240000000 | |
me-south-1 | 0.3400000000 | |
sa-east-1 | 0.4192000000 | |
us-east-1 | 0.2720000000 | |
us-east-2 | 0.2720000000 | |
us-west-1 | 0.3392000000 | |
us-west-2 | 0.2720000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 0.3440000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.3424000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.3080000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.1704000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.3136000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.3552000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.2976000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.3104000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.2920000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.3232000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.2918000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.3232000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.3240000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.3400000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.4192000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.2720000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.2720000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.3392000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.2720000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 0.6880000000 | |
ap-northeast-1 | 0.6848000000 | |
ap-northeast-2 | 0.6160000000 | |
ap-south-1 | 0.3408000000 | |
ap-southeast-1 | 0.6272000000 | |
ap-southeast-2 | 0.7104000000 | |
ca-central-1 | 0.5952000000 | |
eu-central-1 | 0.6208000000 | |
eu-north-1 | 0.5840000000 | |
eu-south-1 | 0.6464000000 | |
eu-west-1 | 0.5837000000 | |
eu-west-2 | 0.6464000000 | |
eu-west-3 | 0.6480000000 | |
me-south-1 | 0.6800000000 | |
sa-east-1 | 0.8384000000 | |
us-east-1 | 0.5440000000 | |
us-east-2 | 0.5440000000 | |
us-west-1 | 0.6784000000 | |
us-west-2 | 0.5440000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 0.6880000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.6848000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.6160000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.3408000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.6272000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.7104000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.5952000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.6208000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.5840000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.6464000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.5837000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.6464000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.6480000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.6800000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.8384000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.5440000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.5440000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.6784000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.5440000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 1.3760000000 | |
ap-northeast-1 | 1.3696000000 | |
ap-northeast-2 | 1.2320000000 | |
ap-south-1 | 0.6816000000 | |
ap-southeast-1 | 1.2544000000 | |
ap-southeast-2 | 1.4208000000 | |
ca-central-1 | 1.1904000000 | |
eu-central-1 | 1.2416000000 | |
eu-north-1 | 1.1680000000 | |
eu-south-1 | 1.2928000000 | |
eu-west-1 | 1.1674000000 | |
eu-west-2 | 1.2928000000 | |
eu-west-3 | 1.2960000000 | |
me-south-1 | 1.3600000000 | |
sa-east-1 | 1.6768000000 | |
us-east-1 | 1.0880000000 | |
us-east-2 | 1.0880000000 | |
us-west-1 | 1.3568000000 | |
us-west-2 | 1.0880000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 1.3760000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 1.3696000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 1.2320000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.6816000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 1.2544000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.4208000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 1.1904000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.2416000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 1.1680000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 1.2928000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.1674000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 1.2928000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 1.2960000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 1.3600000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 1.6768000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.0880000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.0880000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 1.3568000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.0880000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 0.0860000000 | |
ap-northeast-1 | 0.0856000000 | |
ap-northeast-2 | 0.0770000000 | |
ap-south-1 | 0.0426000000 | |
ap-southeast-1 | 0.0784000000 | |
ap-southeast-2 | 0.0888000000 | |
ca-central-1 | 0.0744000000 | |
eu-central-1 | 0.0776000000 | |
eu-north-1 | 0.0730000000 | |
eu-south-1 | 0.0808000000 | |
eu-west-1 | 0.0730000000 | |
eu-west-2 | 0.0808000000 | |
eu-west-3 | 0.0810000000 | |
me-south-1 | 0.0850000000 | |
sa-east-1 | 0.1048000000 | |
us-east-1 | 0.0680000000 | |
us-east-2 | 0.0680000000 | |
us-west-1 | 0.0848000000 | |
us-west-2 | 0.0680000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 0.0860000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.0856000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.0770000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0426000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.0784000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.0888000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.0744000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.0776000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.0730000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.0808000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.0730000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.0808000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.0810000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.0850000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.1048000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0680000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0680000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.0848000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0680000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 0.0430000000 | |
ap-northeast-1 | 0.0428000000 | |
ap-northeast-2 | 0.0385000000 | |
ap-south-1 | 0.0213000000 | |
ap-southeast-1 | 0.0392000000 | |
ap-southeast-2 | 0.0444000000 | |
ca-central-1 | 0.0372000000 | |
eu-central-1 | 0.0388000000 | |
eu-north-1 | 0.0365000000 | |
eu-south-1 | 0.0404000000 | |
eu-west-1 | 0.0365000000 | |
eu-west-2 | 0.0404000000 | |
eu-west-3 | 0.0405000000 | |
me-south-1 | 0.0425000000 | |
sa-east-1 | 0.0524000000 | |
us-east-1 | 0.0340000000 | |
us-east-2 | 0.0340000000 | |
us-west-1 | 0.0424000000 | |
us-west-2 | 0.0340000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 0.0430000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.0428000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.0385000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0213000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.0392000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.0444000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.0372000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.0388000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.0365000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.0404000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.0365000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.0404000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.0405000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.0425000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.0524000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0340000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0340000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.0424000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0340000000 | |
} | |
] |
This file contains 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
ap-east-1 | 2.7520000000 | |
---|---|---|
ap-northeast-1 | 2.7392000000 | |
ap-northeast-2 | 2.4640000000 | |
ap-south-1 | 1.3632000000 | |
ap-southeast-1 | 2.5088000000 | |
ap-southeast-2 | 2.8416000000 | |
ca-central-1 | 2.3808000000 | |
eu-central-1 | 2.4832000000 | |
eu-north-1 | 2.3360000000 | |
eu-south-1 | 2.5856000000 | |
eu-west-1 | 2.3347000000 | |
eu-west-2 | 2.5856000000 | |
eu-west-3 | 2.5920000000 | |
me-south-1 | 2.7200000000 | |
sa-east-1 | 3.3536000000 | |
us-east-1 | 2.1760000000 | |
us-east-2 | 2.1760000000 | |
us-west-1 | 2.7136000000 | |
us-west-2 | 2.1760000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 2.7520000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.7392000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 2.4640000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.3632000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.5088000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 2.8416000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 2.3808000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.4832000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 2.3360000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 2.5856000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.3347000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 2.5856000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 2.5920000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 2.7200000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 3.3536000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.1760000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.1760000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 2.7136000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.1760000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 0.1720000000 | |
ap-northeast-1 | 0.1712000000 | |
ap-northeast-2 | 0.1540000000 | |
ap-south-1 | 0.0852000000 | |
ap-southeast-1 | 0.1568000000 | |
ap-southeast-2 | 0.1776000000 | |
ca-central-1 | 0.1488000000 | |
eu-central-1 | 0.1552000000 | |
eu-north-1 | 0.1460000000 | |
eu-south-1 | 0.1616000000 | |
eu-west-1 | 0.1459000000 | |
eu-west-2 | 0.1616000000 | |
eu-west-3 | 0.1620000000 | |
me-south-1 | 0.1700000000 | |
sa-east-1 | 0.2096000000 | |
us-east-1 | 0.1360000000 | |
us-east-2 | 0.1360000000 | |
us-west-1 | 0.1696000000 | |
us-west-2 | 0.1360000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 0.1720000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.1712000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.1540000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0852000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.1568000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.1776000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.1488000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.1552000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.1460000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.1616000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.1459000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.1616000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.1620000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.1700000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.2096000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1360000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1360000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.1696000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1360000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 2.3520000000 | |
ap-northeast-2 | 2.1120000000 | |
ap-south-1 | 1.1760000000 | |
ap-southeast-1 | 2.1600000000 | |
ap-southeast-2 | 2.4240000000 | |
ca-central-1 | 2.0352000000 | |
eu-central-1 | 2.1360000000 | |
eu-west-1 | 2.0928000000 | |
eu-west-2 | 2.2080000000 | |
us-east-1 | 1.8432000000 | |
us-east-2 | 1.8432000000 | |
us-west-1 | 2.3040000000 | |
us-west-2 | 1.8432000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.3520000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 2.1120000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.1760000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.1600000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 2.4240000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 2.0352000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.1360000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.0928000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 2.2080000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.8432000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.8432000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 2.3040000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.8432000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 3.1360000000 | |
ap-northeast-2 | 2.8160000000 | |
ap-south-1 | 1.5680000000 | |
ap-southeast-1 | 2.8800000000 | |
ap-southeast-2 | 3.2320000000 | |
ca-central-1 | 2.7136000000 | |
eu-central-1 | 2.8480000000 | |
eu-west-1 | 2.7904000000 | |
eu-west-2 | 2.9440000000 | |
us-east-1 | 2.4576000000 | |
us-east-2 | 2.4576000000 | |
us-west-1 | 3.0720000000 | |
us-west-2 | 2.4576000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 3.1360000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 2.8160000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.5680000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.8800000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 3.2320000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 2.7136000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.8480000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.7904000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 2.9440000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.4576000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.4576000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 3.0720000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.4576000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.3920000000 | |
ap-northeast-2 | 0.3520000000 | |
ap-south-1 | 0.1960000000 | |
ap-southeast-1 | 0.3600000000 | |
ap-southeast-2 | 0.4040000000 | |
ca-central-1 | 0.3392000000 | |
eu-central-1 | 0.3560000000 | |
eu-west-1 | 0.3488000000 | |
eu-west-2 | 0.3680000000 | |
us-east-1 | 0.3072000000 | |
us-east-2 | 0.3072000000 | |
us-west-1 | 0.3840000000 | |
us-west-2 | 0.3072000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.3920000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.3520000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.1960000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.3600000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.4040000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.3392000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.3560000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.3488000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.3680000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.3072000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.3072000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.3840000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.3072000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.7840000000 | |
ap-northeast-2 | 0.7040000000 | |
ap-south-1 | 0.3920000000 | |
ap-southeast-1 | 0.7200000000 | |
ap-southeast-2 | 0.8080000000 | |
ca-central-1 | 0.6784000000 | |
eu-central-1 | 0.7120000000 | |
eu-west-1 | 0.6976000000 | |
eu-west-2 | 0.7360000000 | |
us-east-1 | 0.6144000000 | |
us-east-2 | 0.6144000000 | |
us-west-1 | 0.7680000000 | |
us-west-2 | 0.6144000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.7840000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.7040000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.3920000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.7200000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.8080000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.6784000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.7120000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.6976000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.7360000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.6144000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.6144000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.7680000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.6144000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 1.5680000000 | |
ap-northeast-2 | 1.4080000000 | |
ap-south-1 | 0.7840000000 | |
ap-southeast-1 | 1.4400000000 | |
ap-southeast-2 | 1.6160000000 | |
ca-central-1 | 1.3568000000 | |
eu-central-1 | 1.4240000000 | |
eu-west-1 | 1.3952000000 | |
eu-west-2 | 1.4720000000 | |
us-east-1 | 1.2288000000 | |
us-east-2 | 1.2288000000 | |
us-west-1 | 1.5360000000 | |
us-west-2 | 1.2288000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 1.5680000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 1.4080000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.7840000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 1.4400000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.6160000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 1.3568000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.4240000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.3952000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 1.4720000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.2288000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.2288000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 1.5360000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.2288000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.0980000000 | |
ap-northeast-2 | 0.0880000000 | |
ap-south-1 | 0.0490000000 | |
ap-southeast-1 | 0.0900000000 | |
ap-southeast-2 | 0.1010000000 | |
ca-central-1 | 0.0848000000 | |
eu-central-1 | 0.0890000000 | |
eu-west-1 | 0.0872000000 | |
eu-west-2 | 0.0920000000 | |
us-east-1 | 0.0768000000 | |
us-east-2 | 0.0768000000 | |
us-west-1 | 0.0960000000 | |
us-west-2 | 0.0768000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.0980000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.0880000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0490000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.0900000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.1010000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.0848000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.0890000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.0872000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.0920000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0768000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0768000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.0960000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0768000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.0490000000 | |
ap-northeast-2 | 0.0440000000 | |
ap-south-1 | 0.0245000000 | |
ap-southeast-1 | 0.0450000000 | |
ap-southeast-2 | 0.0505000000 | |
ca-central-1 | 0.0424000000 | |
eu-central-1 | 0.0445000000 | |
eu-west-1 | 0.0436000000 | |
eu-west-2 | 0.0460000000 | |
us-east-1 | 0.0384000000 | |
us-east-2 | 0.0384000000 | |
us-west-1 | 0.0480000000 | |
us-west-2 | 0.0384000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.0490000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.0440000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0245000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.0450000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.0505000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.0424000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.0445000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.0436000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.0460000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0384000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0384000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.0480000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0384000000 | |
} | |
] |
This file contains 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
ap-northeast-1 | 3.1360000000 | |
---|---|---|
ap-northeast-2 | 2.8160000000 | |
ap-south-1 | 1.5680000000 | |
ap-southeast-1 | 2.8800000000 | |
ap-southeast-2 | 3.2320000000 | |
ca-central-1 | 2.7136000000 | |
eu-central-1 | 2.8480000000 | |
eu-west-1 | 2.7904000000 | |
eu-west-2 | 2.9440000000 | |
us-east-1 | 2.4576000000 | |
us-east-2 | 2.4576000000 | |
us-west-1 | 3.0720000000 | |
us-west-2 | 2.4576000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 3.1360000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 2.8160000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.5680000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.8800000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 3.2320000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 2.7136000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.8480000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.7904000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 2.9440000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.4576000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.4576000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 3.0720000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.4576000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.1960000000 | |
ap-northeast-2 | 0.1760000000 | |
ap-south-1 | 0.0980000000 | |
ap-southeast-1 | 0.1800000000 | |
ap-southeast-2 | 0.2020000000 | |
ca-central-1 | 0.1696000000 | |
eu-central-1 | 0.1780000000 | |
eu-west-1 | 0.1744000000 | |
eu-west-2 | 0.1840000000 | |
us-east-1 | 0.1536000000 | |
us-east-2 | 0.1536000000 | |
us-west-1 | 0.1920000000 | |
us-west-2 | 0.1536000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.1960000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.1760000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0980000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.1800000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.2020000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.1696000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.1780000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.1744000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.1840000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1536000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1536000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.1920000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1536000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 2.7480000000 | |
ap-northeast-1 | 2.6160000000 | |
ap-northeast-2 | 2.3400000000 | |
ap-south-1 | 2.0760000000 | |
ap-southeast-1 | 2.3760000000 | |
ap-southeast-2 | 2.7120000000 | |
ca-central-1 | 2.2704000000 | |
eu-central-1 | 2.3664000000 | |
eu-north-1 | 2.2320000000 | |
eu-south-1 | 2.4768000000 | |
eu-west-1 | 2.3424000000 | |
eu-west-2 | 2.4600000000 | |
eu-west-3 | 2.4600000000 | |
me-south-1 | 2.5728000000 | |
sa-east-1 | 3.1920000000 | |
us-east-1 | 2.0736000000 | |
us-east-2 | 2.0736000000 | |
us-west-1 | 2.5920000000 | |
us-west-2 | 2.0736000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 2.7480000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.6160000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 2.3400000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 2.0760000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.3760000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 2.7120000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 2.2704000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.3664000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 2.2320000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 2.4768000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.3424000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 2.4600000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 2.4600000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 2.5728000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 3.1920000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.0736000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.0736000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 2.5920000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.0736000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 3.6640000000 | |
ap-northeast-1 | 3.4880000000 | |
ap-northeast-2 | 3.1200000000 | |
ap-south-1 | 2.7680000000 | |
ap-southeast-1 | 3.1680000000 | |
ap-southeast-2 | 3.6160000000 | |
ca-central-1 | 3.0272000000 | |
eu-central-1 | 3.1552000000 | |
eu-north-1 | 2.9760000000 | |
eu-south-1 | 3.3024000000 | |
eu-west-1 | 3.1232000000 | |
eu-west-2 | 3.2800000000 | |
eu-west-3 | 3.2800000000 | |
me-south-1 | 3.4304000000 | |
sa-east-1 | 4.2560000000 | |
us-east-1 | 2.7648000000 | |
us-east-2 | 2.7648000000 | |
us-west-1 | 3.4560000000 | |
us-west-2 | 2.7648000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 3.6640000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 3.4880000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 3.1200000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 2.7680000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 3.1680000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 3.6160000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 3.0272000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 3.1552000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 2.9760000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 3.3024000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 3.1232000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 3.2800000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 3.2800000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 3.4304000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 4.2560000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.7648000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.7648000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 3.4560000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.7648000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 0.4580000000 | |
ap-northeast-1 | 0.4360000000 | |
ap-northeast-2 | 0.3900000000 | |
ap-south-1 | 0.3460000000 | |
ap-southeast-1 | 0.3960000000 | |
ap-southeast-2 | 0.4520000000 | |
ca-central-1 | 0.3784000000 | |
eu-central-1 | 0.3944000000 | |
eu-north-1 | 0.3720000000 | |
eu-south-1 | 0.4128000000 | |
eu-west-1 | 0.3904000000 | |
eu-west-2 | 0.4100000000 | |
eu-west-3 | 0.4100000000 | |
me-south-1 | 0.4288000000 | |
sa-east-1 | 0.5320000000 | |
us-east-1 | 0.3456000000 | |
us-east-2 | 0.3456000000 | |
us-west-1 | 0.4320000000 | |
us-west-2 | 0.3456000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 0.4580000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.4360000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.3900000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.3460000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.3960000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.4520000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.3784000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.3944000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.3720000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.4128000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.3904000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.4100000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.4100000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.4288000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.5320000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.3456000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.3456000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.4320000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.3456000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 0.9160000000 | |
ap-northeast-1 | 0.8720000000 | |
ap-northeast-2 | 0.7800000000 | |
ap-south-1 | 0.6920000000 | |
ap-southeast-1 | 0.7920000000 | |
ap-southeast-2 | 0.9040000000 | |
ca-central-1 | 0.7568000000 | |
eu-central-1 | 0.7888000000 | |
eu-north-1 | 0.7440000000 | |
eu-south-1 | 0.8256000000 | |
eu-west-1 | 0.7808000000 | |
eu-west-2 | 0.8200000000 | |
eu-west-3 | 0.8200000000 | |
me-south-1 | 0.8576000000 | |
sa-east-1 | 1.0640000000 | |
us-east-1 | 0.6912000000 | |
us-east-2 | 0.6912000000 | |
us-west-1 | 0.8640000000 | |
us-west-2 | 0.6912000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 0.9160000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.8720000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.7800000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.6920000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.7920000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.9040000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.7568000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.7888000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.7440000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.8256000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.7808000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.8200000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.8200000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.8576000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 1.0640000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.6912000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.6912000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.8640000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.6912000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 1.8320000000 | |
ap-northeast-1 | 1.7440000000 | |
ap-northeast-2 | 1.5600000000 | |
ap-south-1 | 1.3840000000 | |
ap-southeast-1 | 1.5840000000 | |
ap-southeast-2 | 1.8080000000 | |
ca-central-1 | 1.5136000000 | |
eu-central-1 | 1.5776000000 | |
eu-north-1 | 1.4880000000 | |
eu-south-1 | 1.6512000000 | |
eu-west-1 | 1.5616000000 | |
eu-west-2 | 1.6400000000 | |
eu-west-3 | 1.6400000000 | |
me-south-1 | 1.7152000000 | |
sa-east-1 | 2.1280000000 | |
us-east-1 | 1.3824000000 | |
us-east-2 | 1.3824000000 | |
us-west-1 | 1.7280000000 | |
us-west-2 | 1.3824000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 1.8320000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 1.7440000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 1.5600000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.3840000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 1.5840000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.8080000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 1.5136000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.5776000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 1.4880000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 1.6512000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.5616000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 1.6400000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 1.6400000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 1.7152000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 2.1280000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.3824000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.3824000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 1.7280000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.3824000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 0.1145000000 | |
ap-northeast-1 | 0.1090000000 | |
ap-northeast-2 | 0.0975000000 | |
ap-south-1 | 0.0865000000 | |
ap-southeast-1 | 0.0990000000 | |
ap-southeast-2 | 0.1130000000 | |
ca-central-1 | 0.0946000000 | |
eu-central-1 | 0.0986000000 | |
eu-north-1 | 0.0930000000 | |
eu-south-1 | 0.1032000000 | |
eu-west-1 | 0.0976000000 | |
eu-west-2 | 0.1025000000 | |
eu-west-3 | 0.1025000000 | |
me-south-1 | 0.1072000000 | |
sa-east-1 | 0.1330000000 | |
us-east-1 | 0.0864000000 | |
us-east-2 | 0.0864000000 | |
us-west-1 | 0.1080000000 | |
us-west-2 | 0.0864000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 0.1145000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.1090000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.0975000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0865000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.0990000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.1130000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.0946000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.0986000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.0930000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.1032000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.0976000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.1025000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.1025000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.1072000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.1330000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0864000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0864000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.1080000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0864000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 0.0572500000 | |
ap-northeast-1 | 0.0545000000 | |
ap-northeast-2 | 0.0487500000 | |
ap-south-1 | 0.0432500000 | |
ap-southeast-1 | 0.0495000000 | |
ap-southeast-2 | 0.0565000000 | |
ca-central-1 | 0.0473000000 | |
eu-central-1 | 0.0493000000 | |
eu-north-1 | 0.0465000000 | |
eu-south-1 | 0.0516000000 | |
eu-west-1 | 0.0488000000 | |
eu-west-2 | 0.0512500000 | |
eu-west-3 | 0.0512500000 | |
me-south-1 | 0.0536000000 | |
sa-east-1 | 0.0665000000 | |
us-east-1 | 0.0432000000 | |
us-east-2 | 0.0432000000 | |
us-west-1 | 0.0540000000 | |
us-west-2 | 0.0432000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 0.0572500000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.0545000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.0487500000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0432500000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.0495000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.0565000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.0473000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.0493000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.0465000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.0516000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.0488000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.0512500000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.0512500000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.0536000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.0665000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0432000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0432000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.0540000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0432000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 3.4880000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 3.4880000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-east-1 | 0.2290000000 | |
ap-northeast-1 | 0.2180000000 | |
ap-northeast-2 | 0.1950000000 | |
ap-south-1 | 0.1730000000 | |
ap-southeast-1 | 0.1980000000 | |
ap-southeast-2 | 0.2260000000 | |
ca-central-1 | 0.1892000000 | |
eu-central-1 | 0.1972000000 | |
eu-north-1 | 0.1860000000 | |
eu-south-1 | 0.2064000000 | |
eu-west-1 | 0.1952000000 | |
eu-west-2 | 0.2050000000 | |
eu-west-3 | 0.2050000000 | |
me-south-1 | 0.2144000000 | |
sa-east-1 | 0.2660000000 | |
us-east-1 | 0.1728000000 | |
us-east-2 | 0.1728000000 | |
us-west-1 | 0.2160000000 | |
us-west-2 | 0.1728000000 |
This file contains 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
[ | |
{ | |
"region": "ap-east-1", | |
"price": 0.2290000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.2180000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.1950000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.1730000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.1980000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.2260000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.1892000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.1972000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.1860000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.2064000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.1952000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.2050000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.2050000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.2144000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.2660000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1728000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1728000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.2160000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1728000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 2.5680000000 | |
ap-northeast-2 | 2.3040000000 | |
ap-south-1 | 2.0400000000 | |
ap-southeast-1 | 2.3520000000 | |
ap-southeast-2 | 2.6640000000 | |
ca-central-1 | 2.2320000000 | |
eu-central-1 | 2.3280000000 | |
eu-west-1 | 2.1888000000 | |
eu-west-2 | 2.4240000000 | |
eu-west-3 | 2.4240000000 | |
sa-east-1 | 3.1440000000 | |
us-east-1 | 2.0400000000 | |
us-east-2 | 2.0400000000 | |
us-west-1 | 2.5440000000 | |
us-west-2 | 2.0400000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.5680000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 2.3040000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 2.0400000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.3520000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 2.6640000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 2.2320000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.3280000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.1888000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 2.4240000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 2.4240000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 3.1440000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.0400000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.0400000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 2.5440000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.0400000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 3.4240000000 | |
ap-northeast-2 | 3.0720000000 | |
ap-south-1 | 2.7200000000 | |
ap-southeast-1 | 3.1360000000 | |
ap-southeast-2 | 3.5520000000 | |
ca-central-1 | 2.9760000000 | |
eu-central-1 | 3.1040000000 | |
eu-west-1 | 2.9184000000 | |
eu-west-2 | 3.2320000000 | |
eu-west-3 | 3.2320000000 | |
sa-east-1 | 4.1920000000 | |
us-east-1 | 2.7200000000 | |
us-east-2 | 2.7200000000 | |
us-west-1 | 3.3920000000 | |
us-west-2 | 2.7200000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 3.4240000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 3.0720000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 2.7200000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 3.1360000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 3.5520000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 2.9760000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 3.1040000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.9184000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 3.2320000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 3.2320000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 4.1920000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.7200000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.7200000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 3.3920000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.7200000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 5.1360000000 | |
ap-northeast-2 | 4.6080000000 | |
ap-south-1 | 4.0800000000 | |
ap-southeast-1 | 4.7040000000 | |
ap-southeast-2 | 5.3280000000 | |
ca-central-1 | 4.4640000000 | |
eu-central-1 | 4.6560000000 | |
eu-west-1 | 4.3776000000 | |
eu-west-2 | 4.8480000000 | |
eu-west-3 | 4.8480000000 | |
sa-east-1 | 6.2880000000 | |
us-east-1 | 4.0800000000 | |
us-east-2 | 4.0800000000 | |
us-west-1 | 5.0880000000 | |
us-west-2 | 4.0800000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 5.1360000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 4.6080000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 4.0800000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 4.7040000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 5.3280000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 4.4640000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 4.6560000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 4.3776000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 4.8480000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 4.8480000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 6.2880000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 4.0800000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 4.0800000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 5.0880000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 4.0800000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.4280000000 | |
ap-northeast-2 | 0.3840000000 | |
ap-south-1 | 0.3400000000 | |
ap-southeast-1 | 0.3920000000 | |
ap-southeast-2 | 0.4440000000 | |
ca-central-1 | 0.3720000000 | |
eu-central-1 | 0.3880000000 | |
eu-west-1 | 0.3648000000 | |
eu-west-2 | 0.4040000000 | |
eu-west-3 | 0.4040000000 | |
sa-east-1 | 0.5240000000 | |
us-east-1 | 0.3400000000 | |
us-east-2 | 0.3400000000 | |
us-west-1 | 0.4240000000 | |
us-west-2 | 0.3400000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.4280000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.3840000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.3400000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.3920000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.4440000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.3720000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.3880000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.3648000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.4040000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.4040000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.5240000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.3400000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.3400000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.4240000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.3400000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 6.8480000000 | |
ap-northeast-2 | 6.1440000000 | |
ap-south-1 | 5.4400000000 | |
ap-southeast-1 | 6.2720000000 | |
ap-southeast-2 | 7.1040000000 | |
ca-central-1 | 5.9520000000 | |
eu-central-1 | 6.2080000000 | |
eu-west-1 | 5.8368000000 | |
eu-west-2 | 6.4640000000 | |
eu-west-3 | 6.4640000000 | |
sa-east-1 | 8.3840000000 | |
us-east-1 | 5.4400000000 | |
us-east-2 | 5.4400000000 | |
us-west-1 | 6.7840000000 | |
us-west-2 | 5.4400000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 6.8480000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 6.1440000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 5.4400000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 6.2720000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 7.1040000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 5.9520000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 6.2080000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 5.8368000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 6.4640000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 6.4640000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 8.3840000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 5.4400000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 5.4400000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 6.7840000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 5.4400000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.8560000000 | |
ap-northeast-2 | 0.7680000000 | |
ap-south-1 | 0.6800000000 | |
ap-southeast-1 | 0.7840000000 | |
ap-southeast-2 | 0.8880000000 | |
ca-central-1 | 0.7440000000 | |
eu-central-1 | 0.7760000000 | |
eu-west-1 | 0.7296000000 | |
eu-west-2 | 0.8080000000 | |
eu-west-3 | 0.8080000000 | |
sa-east-1 | 1.0480000000 | |
us-east-1 | 0.6800000000 | |
us-east-2 | 0.6800000000 | |
us-west-1 | 0.8480000000 | |
us-west-2 | 0.6800000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.8560000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.7680000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.6800000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.7840000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.8880000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.7440000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.7760000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.7296000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.8080000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.8080000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 1.0480000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.6800000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.6800000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.8480000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.6800000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 1.7120000000 | |
ap-northeast-2 | 1.5360000000 | |
ap-south-1 | 1.3600000000 | |
ap-southeast-1 | 1.5680000000 | |
ap-southeast-2 | 1.7760000000 | |
ca-central-1 | 1.4880000000 | |
eu-central-1 | 1.5520000000 | |
eu-west-1 | 1.4592000000 | |
eu-west-2 | 1.6160000000 | |
eu-west-3 | 1.6160000000 | |
sa-east-1 | 2.0960000000 | |
us-east-1 | 1.3600000000 | |
us-east-2 | 1.3600000000 | |
us-west-1 | 1.6960000000 | |
us-west-2 | 1.3600000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 1.7120000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 1.5360000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.3600000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 1.5680000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.7760000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 1.4880000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.5520000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.4592000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 1.6160000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 1.6160000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 2.0960000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.3600000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.3600000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 1.6960000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.3600000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.1070000000 | |
ap-northeast-2 | 0.0960000000 | |
ap-south-1 | 0.0850000000 | |
ap-southeast-1 | 0.0980000000 | |
ap-southeast-2 | 0.1110000000 | |
ca-central-1 | 0.0930000000 | |
eu-central-1 | 0.0970000000 | |
eu-west-1 | 0.0912000000 | |
eu-west-2 | 0.1010000000 | |
eu-west-3 | 0.1010000000 | |
sa-east-1 | 0.1310000000 | |
us-east-1 | 0.0850000000 | |
us-east-2 | 0.0850000000 | |
us-west-1 | 0.1060000000 | |
us-west-2 | 0.0850000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.1070000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.0960000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.0850000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.0980000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.1110000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.0930000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.0970000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.0912000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.1010000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.1010000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.1310000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0850000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0850000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.1060000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0850000000 | |
} | |
] |
This file contains 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
ap-northeast-1 | 6.8480000000 | |
---|---|---|
ap-northeast-2 | 6.1440000000 | |
ap-south-1 | 5.4400000000 | |
ap-southeast-1 | 6.2720000000 | |
ap-southeast-2 | 7.1040000000 | |
ca-central-1 | 5.9520000000 | |
eu-central-1 | 6.2080000000 | |
eu-west-1 | 5.8368000000 | |
eu-west-2 | 6.4640000000 | |
eu-west-3 | 6.4640000000 | |
sa-east-1 | 8.3840000000 | |
us-east-1 | 5.4400000000 | |
us-east-2 | 5.4400000000 | |
us-west-1 | 6.7840000000 | |
us-west-2 | 5.4400000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 6.8480000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 6.1440000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 5.4400000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 6.2720000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 7.1040000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 5.9520000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 6.2080000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 5.8368000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 6.4640000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 6.4640000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 8.3840000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 5.4400000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 5.4400000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 6.7840000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 5.4400000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.2140000000 | |
ap-northeast-2 | 0.1920000000 | |
ap-south-1 | 0.1700000000 | |
ap-southeast-1 | 0.1960000000 | |
ap-southeast-2 | 0.2220000000 | |
ca-central-1 | 0.1860000000 | |
eu-central-1 | 0.1940000000 | |
eu-west-1 | 0.1824000000 | |
eu-west-2 | 0.2020000000 | |
eu-west-3 | 0.2020000000 | |
sa-east-1 | 0.2620000000 | |
us-east-1 | 0.1700000000 | |
us-east-2 | 0.1700000000 | |
us-west-1 | 0.2120000000 | |
us-west-2 | 0.1700000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.2140000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.1920000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.1700000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.1960000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.2220000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.1860000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.1940000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.1824000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.2020000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.2020000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.2620000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1700000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1700000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.2120000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1700000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 2.7468000000 | |
us-east-1 | 2.4192000000 | |
us-east-2 | 2.4192000000 | |
us-west-2 | 2.4192000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 2.7468000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.4192000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.4192000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.4192000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 3.6624000000 | |
us-east-1 | 3.2256000000 | |
us-east-2 | 3.2256000000 | |
us-west-2 | 3.2256000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 3.6624000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 3.2256000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 3.2256000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 3.2256000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 5.4936000000 | |
us-east-1 | 4.8384000000 | |
us-east-2 | 4.8384000000 | |
us-west-2 | 4.8384000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 5.4936000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 4.8384000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 4.8384000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 4.8384000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 0.4578000000 | |
us-east-1 | 0.4032000000 | |
us-east-2 | 0.4032000000 | |
us-west-2 | 0.4032000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 0.4578000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.4032000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.4032000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.4032000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 7.3248000000 | |
us-east-1 | 6.4512000000 | |
us-east-2 | 6.4512000000 | |
us-west-2 | 6.4512000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 7.3248000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 6.4512000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 6.4512000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 6.4512000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 0.9156000000 | |
us-east-1 | 0.8064000000 | |
us-east-2 | 0.8064000000 | |
us-west-2 | 0.8064000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 0.9156000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.8064000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.8064000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.8064000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 1.8312000000 | |
us-east-1 | 1.6128000000 | |
us-east-2 | 1.6128000000 | |
us-west-2 | 1.6128000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 1.8312000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.6128000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.6128000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.6128000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 0.1144500000 | |
us-east-1 | 0.1008000000 | |
us-east-2 | 0.1008000000 | |
us-west-2 | 0.1008000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 0.1144500000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1008000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1008000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1008000000 | |
} | |
] |
This file contains 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
eu-west-1 | 7.3248000000 | |
---|---|---|
us-east-1 | 6.4512000000 | |
us-east-2 | 6.4512000000 | |
us-west-2 | 6.4512000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 7.3248000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 6.4512000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 6.4512000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 6.4512000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 0.2289000000 | |
us-east-1 | 0.2016000000 | |
us-east-2 | 0.2016000000 | |
us-west-2 | 0.2016000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 0.2289000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.2016000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.2016000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.2016000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 1.8605000000 | |
us-east-1 | 1.7400000000 | |
us-east-2 | 1.7342000000 | |
us-west-2 | 1.7400000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 1.8605000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.7400000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.7342000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.7400000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 2.4806000000 | |
us-east-1 | 2.3200000000 | |
us-east-2 | 2.3123000000 | |
us-west-2 | 2.3200000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 2.4806000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.3200000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.3123000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.3200000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 0.3101000000 | |
us-east-1 | 0.2900000000 | |
us-east-2 | 0.2890000000 | |
us-west-2 | 0.2900000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 0.3101000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.2900000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.2890000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.2900000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 0.6202000000 | |
us-east-1 | 0.5800000000 | |
us-east-2 | 0.5781000000 | |
us-west-2 | 0.5800000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 0.6202000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.5800000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.5781000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.5800000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 1.2403000000 | |
us-east-1 | 1.1600000000 | |
us-east-2 | 1.1562000000 | |
us-west-2 | 1.1600000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 1.2403000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.1600000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.1562000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.1600000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 0.0775000000 | |
us-east-1 | 0.0725000000 | |
us-east-2 | 0.0723000000 | |
us-west-2 | 0.0725000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 0.0775000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0725000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0723000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0725000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 0.0388000000 | |
us-east-1 | 0.0363000000 | |
us-east-2 | 0.0361000000 | |
us-west-2 | 0.0363000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 0.0388000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.0363000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.0361000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.0363000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 0.1550000000 | |
us-east-1 | 0.1450000000 | |
us-east-2 | 0.1445000000 | |
us-west-2 | 0.1450000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 0.1550000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.1450000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.1445000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.1450000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 2.3490000000 | |
eu-west-1 | 2.2500000000 | |
us-east-1 | 2.0000000000 | |
us-west-2 | 2.0000000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.3490000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.2500000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.0000000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.0000000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 4.1050000000 | |
eu-west-1 | 3.7500000000 | |
us-east-1 | 3.5000000000 | |
us-west-2 | 3.5000000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 4.1050000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 3.7500000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 3.5000000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 3.5000000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 1.7500000000 | |
ap-east-1 | 1.9140000000 | |
ap-northeast-1 | 1.6880000000 | |
ap-northeast-2 | 1.6880000000 | |
ap-northeast-3 | 1.6880000000 | |
ap-south-1 | 1.6530000000 | |
ap-southeast-1 | 1.7400000000 | |
ap-southeast-2 | 1.7400000000 | |
ca-central-1 | 1.5180000000 | |
eu-central-1 | 1.5880000000 | |
eu-north-1 | 1.3960000000 | |
eu-south-1 | 1.5440000000 | |
eu-west-1 | 1.4700000000 | |
eu-west-2 | 1.5440000000 | |
eu-west-3 | 1.5440000000 | |
me-south-1 | 1.6170000000 | |
us-east-1 | 1.3800000000 | |
us-east-2 | 1.3800000000 | |
us-west-1 | 1.5630000000 | |
us-west-2 | 1.3800000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 1.7500000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 1.9140000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 1.6880000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 1.6880000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 1.6880000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.6530000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 1.7400000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.7400000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 1.5180000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.5880000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 1.3960000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 1.5440000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.4700000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 1.5440000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 1.5440000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 1.6170000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.3800000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.3800000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 1.5630000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.3800000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 3.5000000000 | |
ap-east-1 | 3.8280000000 | |
ap-northeast-1 | 3.3760000000 | |
ap-northeast-2 | 3.3760000000 | |
ap-northeast-3 | 3.3760000000 | |
ap-south-1 | 3.3060000000 | |
ap-southeast-1 | 3.4800000000 | |
ap-southeast-2 | 3.4800000000 | |
ca-central-1 | 3.0360000000 | |
eu-central-1 | 3.1760000000 | |
eu-north-1 | 2.7920000000 | |
eu-south-1 | 3.0880000000 | |
eu-west-1 | 2.9400000000 | |
eu-west-2 | 3.0870000000 | |
eu-west-3 | 3.0880000000 | |
me-south-1 | 3.2340000000 | |
us-east-1 | 2.7600000000 | |
us-east-2 | 2.7600000000 | |
us-west-1 | 3.1250000000 | |
us-west-2 | 2.7600000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 3.5000000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 3.8280000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 3.3760000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 3.3760000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 3.3760000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 3.3060000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 3.4800000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 3.4800000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 3.0360000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 3.1760000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 2.7920000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 3.0880000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.9400000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 3.0870000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 3.0880000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 3.2340000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.7600000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 2.7600000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 3.1250000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.7600000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 7.0000000000 | |
ap-east-1 | 7.6560000000 | |
ap-northeast-1 | 6.7520000000 | |
ap-northeast-2 | 6.7520000000 | |
ap-northeast-3 | 6.7520000000 | |
ap-south-1 | 6.6120000000 | |
ap-southeast-1 | 6.9600000000 | |
ap-southeast-2 | 6.9600000000 | |
ca-central-1 | 6.0720000000 | |
eu-central-1 | 6.3520000000 | |
eu-north-1 | 5.5840000000 | |
eu-south-1 | 6.1760000000 | |
eu-west-1 | 5.8800000000 | |
eu-west-2 | 6.1740000000 | |
eu-west-3 | 6.1760000000 | |
me-south-1 | 6.4680000000 | |
us-east-1 | 5.5200000000 | |
us-east-2 | 5.5200000000 | |
us-west-1 | 6.2500000000 | |
us-west-2 | 5.5200000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 7.0000000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 7.6560000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 6.7520000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 6.7520000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 6.7520000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 6.6120000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 6.9600000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 6.9600000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 6.0720000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 6.3520000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 5.5840000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 6.1760000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 5.8800000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 6.1740000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 6.1760000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 6.4680000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 5.5200000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 5.5200000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 6.2500000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 5.5200000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
af-south-1 | 0.8750000000 | |
ap-east-1 | 0.9570000000 | |
ap-northeast-1 | 0.8440000000 | |
ap-northeast-2 | 0.8440000000 | |
ap-northeast-3 | 0.8440000000 | |
ap-south-1 | 0.8270000000 | |
ap-southeast-1 | 0.8700000000 | |
ap-southeast-2 | 0.8700000000 | |
ca-central-1 | 0.7590000000 | |
eu-central-1 | 0.7940000000 | |
eu-north-1 | 0.6980000000 | |
eu-south-1 | 0.7720000000 | |
eu-west-1 | 0.7350000000 | |
eu-west-2 | 0.7720000000 | |
eu-west-3 | 0.7720000000 | |
me-south-1 | 0.8090000000 | |
us-east-1 | 0.6900000000 | |
us-east-2 | 0.6900000000 | |
us-west-1 | 0.7810000000 | |
us-west-2 | 0.6900000000 |
This file contains 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
[ | |
{ | |
"region": "af-south-1", | |
"price": 0.8750000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.9570000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.8440000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.8440000000 | |
}, | |
{ | |
"region": "ap-northeast-3", | |
"price": 0.8440000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.8270000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.8700000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.8700000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.7590000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.7940000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.6980000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.7720000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.7350000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.7720000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.7720000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.8090000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.6900000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.6900000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.7810000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.6900000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 1.4480000000 | |
ap-south-1 | 1.0470000000 | |
ap-southeast-1 | 1.2520000000 | |
ap-southeast-2 | 1.2520000000 | |
ca-central-1 | 1.1000000000 | |
eu-central-1 | 1.3160000000 | |
eu-west-1 | 1.2190000000 | |
eu-west-2 | 1.2800000000 | |
us-east-1 | 0.9990000000 | |
us-east-2 | 0.9990000000 | |
us-west-2 | 0.9990000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 1.4480000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 1.0470000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 1.2520000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.2520000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 1.1000000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.3160000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.2190000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 1.2800000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.9990000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.9990000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.9990000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 2.8970000000 | |
ap-south-1 | 2.0950000000 | |
ap-southeast-1 | 2.5040000000 | |
ap-southeast-2 | 2.5040000000 | |
ca-central-1 | 2.2010000000 | |
eu-central-1 | 2.6320000000 | |
eu-west-1 | 2.4370000000 | |
eu-west-2 | 2.5590000000 | |
us-east-1 | 1.9980000000 | |
us-east-2 | 1.9980000000 | |
us-west-2 | 1.9980000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 2.8970000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 2.0950000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 2.5040000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 2.5040000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 2.2010000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 2.6320000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 2.4370000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 2.5590000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.9980000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.9980000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.9980000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 5.7934400000 | |
ap-south-1 | 4.1890400000 | |
ap-southeast-1 | 5.0080800000 | |
ap-southeast-2 | 5.0080800000 | |
ca-central-1 | 4.4011200000 | |
eu-central-1 | 5.2644800000 | |
eu-west-1 | 4.8744800000 | |
eu-west-2 | 5.1182400000 | |
us-east-1 | 3.9955200000 | |
us-east-2 | 3.9955200000 | |
us-west-2 | 3.9955200000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 5.7934400000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 4.1890400000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 5.0080800000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 5.0080800000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 4.4011200000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 5.2644800000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 4.8744800000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 5.1182400000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 3.9955200000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 3.9955200000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 3.9955200000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 0.7240000000 | |
ap-south-1 | 0.5240000000 | |
ap-southeast-1 | 0.6260000000 | |
ap-southeast-2 | 0.6260000000 | |
ca-central-1 | 0.5500000000 | |
eu-central-1 | 0.6580000000 | |
eu-west-1 | 0.6090000000 | |
eu-west-2 | 0.6400000000 | |
us-east-1 | 0.4990000000 | |
us-east-2 | 0.4990000000 | |
us-west-2 | 0.4990000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.7240000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.5240000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.6260000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.6260000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.5500000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.6580000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.6090000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.6400000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.4990000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.4990000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.4990000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 7.6965600000 | |
us-east-1 | 6.3086400000 | |
us-west-2 | 6.3086400000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 7.6965600000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 6.3086400000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 6.3086400000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 1.2830000000 | |
us-east-1 | 1.0510000000 | |
us-west-2 | 1.0510000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 1.2830000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.0510000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.0510000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 2.5660000000 | |
us-east-1 | 2.1030000000 | |
us-west-2 | 2.1030000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 2.5660000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 2.1030000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 2.1030000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 3.8480000000 | |
us-east-1 | 3.1540000000 | |
us-west-2 | 3.1540000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 3.8480000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 3.1540000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 3.1540000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 5.1310400000 | |
us-east-1 | 4.2057600000 | |
us-west-2 | 4.2057600000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 5.1310400000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 4.2057600000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 4.2057600000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
eu-west-1 | 0.6410000000 | |
us-east-1 | 0.5260000000 | |
us-west-2 | 0.5260000000 |
This file contains 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
[ | |
{ | |
"region": "eu-west-1", | |
"price": 0.6410000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.5260000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.5260000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
us-east-1 | 13.1090400000 | |
us-west-2 | 13.1090400000 |
This file contains 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
[ | |
{ | |
"region": "us-east-1", | |
"price": 13.1090400000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 13.1090400000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-southeast-2 | 15.8480000000 | |
eu-central-1 | 13.8720000000 | |
eu-west-1 | 14.5200000000 | |
us-east-1 | 13.2000000000 | |
us-west-2 | 13.2000000000 |
This file contains 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
[ | |
{ | |
"region": "ap-southeast-2", | |
"price": 15.8480000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 13.8720000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 14.5200000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 13.2000000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 13.2000000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-southeast-2 | 1.9810000000 | |
eu-central-1 | 1.7340000000 | |
eu-west-1 | 1.8150000000 | |
eu-west-2 | 1.9060000000 | |
us-east-1 | 1.6500000000 | |
us-west-2 | 1.6500000000 | |
ap-east-1 | 0.5580000000 | |
ap-northeast-1 | 0.4890000000 | |
ap-northeast-2 | 0.4460000000 | |
ap-south-1 | 0.3810000000 | |
ap-southeast-1 | 0.4890000000 | |
ap-southeast-2 | 0.4530000000 | |
ca-central-1 | 0.4030000000 | |
eu-central-1 | 0.4530000000 | |
eu-north-1 | 0.3850000000 | |
eu-south-1 | 0.4240000000 | |
eu-west-1 | 0.4030000000 | |
eu-west-2 | 0.4240000000 | |
eu-west-3 | 0.4230000000 | |
me-south-1 | 0.4440000000 | |
sa-east-1 | 0.5980000000 | |
us-east-1 | 0.3620000000 | |
us-east-2 | 0.3620000000 | |
us-west-1 | 0.4350000000 | |
us-west-2 | 0.3620000000 |
This file contains 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
[ | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.9810000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.7340000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.8150000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 1.9060000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.6500000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.6500000000 | |
}, | |
{ | |
"region": "ap-east-1", | |
"price": 0.5580000000 | |
}, | |
{ | |
"region": "ap-northeast-1", | |
"price": 0.4890000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.4460000000 | |
}, | |
{ | |
"region": "ap-south-1", | |
"price": 0.3810000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 0.4890000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 0.4530000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 0.4030000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 0.4530000000 | |
}, | |
{ | |
"region": "eu-north-1", | |
"price": 0.3850000000 | |
}, | |
{ | |
"region": "eu-south-1", | |
"price": 0.4240000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 0.4030000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 0.4240000000 | |
}, | |
{ | |
"region": "eu-west-3", | |
"price": 0.4230000000 | |
}, | |
{ | |
"region": "me-south-1", | |
"price": 0.4440000000 | |
}, | |
{ | |
"region": "sa-east-1", | |
"price": 0.5980000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 0.3620000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 0.3620000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 0.4350000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 0.3620000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-southeast-2 | 3.9620000000 | |
eu-central-1 | 3.4680000000 | |
eu-west-1 | 3.6300000000 | |
eu-west-2 | 3.8120000000 | |
us-east-1 | 3.3000000000 | |
us-west-2 | 3.3000000000 |
This file contains 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
[ | |
{ | |
"region": "ap-southeast-2", | |
"price": 3.9620000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 3.4680000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 3.6300000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 3.8120000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 3.3000000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 3.3000000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-2 | 0.8980000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-2", | |
"price": 0.8980000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-2 | 3.5920000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-2", | |
"price": 3.5920000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 6.3200000000 | |
ap-northeast-2 | 5.6800000000 | |
ap-southeast-1 | 6.6800000000 | |
ap-southeast-2 | 7.0160000000 | |
ca-central-1 | 5.6640000000 | |
eu-central-1 | 5.7000000000 | |
eu-west-1 | 4.8400000000 | |
eu-west-2 | 5.7160000000 | |
us-east-1 | 4.5600000000 | |
us-east-2 | 4.5600000000 | |
us-west-1 | 6.1360000000 | |
us-west-2 | 4.5600000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 6.3200000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 5.6800000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 6.6800000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 7.0160000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 5.6640000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 5.7000000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 4.8400000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 5.7160000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 4.5600000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 4.5600000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 6.1360000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 4.5600000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 1.5800000000 | |
ap-northeast-2 | 1.4200000000 | |
ap-southeast-1 | 1.6700000000 | |
ap-southeast-2 | 1.7540000000 | |
ca-central-1 | 1.4160000000 | |
eu-central-1 | 1.4250000000 | |
eu-west-1 | 1.2100000000 | |
eu-west-2 | 1.4290000000 | |
us-east-1 | 1.1400000000 | |
us-east-2 | 1.1400000000 | |
us-west-1 | 1.5340000000 | |
us-west-2 | 1.1400000000 |
This file contains 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
[ | |
{ | |
"region": "ap-northeast-1", | |
"price": 1.5800000000 | |
}, | |
{ | |
"region": "ap-northeast-2", | |
"price": 1.4200000000 | |
}, | |
{ | |
"region": "ap-southeast-1", | |
"price": 1.6700000000 | |
}, | |
{ | |
"region": "ap-southeast-2", | |
"price": 1.7540000000 | |
}, | |
{ | |
"region": "ca-central-1", | |
"price": 1.4160000000 | |
}, | |
{ | |
"region": "eu-central-1", | |
"price": 1.4250000000 | |
}, | |
{ | |
"region": "eu-west-1", | |
"price": 1.2100000000 | |
}, | |
{ | |
"region": "eu-west-2", | |
"price": 1.4290000000 | |
}, | |
{ | |
"region": "us-east-1", | |
"price": 1.1400000000 | |
}, | |
{ | |
"region": "us-east-2", | |
"price": 1.1400000000 | |
}, | |
{ | |
"region": "us-west-1", | |
"price": 1.5340000000 | |
}, | |
{ | |
"region": "us-west-2", | |
"price": 1.1400000000 | |
} | |
] |
This file contains 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
region | price | |
---|---|---|
ap-northeast-1 | 3.1600000000 | |
ap-northeast-2 | 2.8400000000 | |
ap-southeast-1 | 3.3400000000 | |
ap-southeast-2 | 3.5080000000 | |
ca-central-1 | 2.8320000000 | |
eu-central-1 | 2.8500000000 | |
eu-west-1 | 2.4200000000 | |
eu-west-2 | 2.8580000000 | |
us-east-1 | 2.2800000000 | |
us-east-2 | 2.2800000000 | |
us-west-1 | 3.0680000000 | |
us-west-2 | 2.2800000000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment