For example, which ones are available, where are they, what IaaS infrastructure do they run on?
You can use the Upsun API:
upsun api:curl regions | jq '.regions[] | select(.available) | .id + ": " + .provider.name + " - " + .zone + " - " + .timezone' | sort
Or, for example you can use the following command to list out the regions and their carbon intensity:
upsun api:curl regions | jq -r '.regions[] | select(.available != false) | "\(.label): \(.environmental_impact.carbon_intensity)"'
For more information visit our Docs.
Comments
Please sign in to leave a comment.