mirror of
https://github.com/wahyd4/things.git
synced 2026-08-09 05:06:35 +10:00
35 lines
911 B
Bash
Executable File
35 lines
911 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Make sure you have fzf installed
|
|
|
|
REGIONS=$(cat <<-END
|
|
US East (Ohio) us-east-2
|
|
US East (N. Virginia) us-east-1
|
|
US West (N. California) us-west-1
|
|
US West (Oregon) us-west-2
|
|
Africa (Cape Town) af-south-1
|
|
Asia Pacific (Hong Kong) ap-east-1
|
|
Asia Pacific (Mumbai) ap-south-1
|
|
Asia Pacific (Osaka-Local) ap-northeast-3
|
|
Asia Pacific (Seoul) ap-northeast-2
|
|
Asia Pacific (Singapore) ap-southeast-1
|
|
Asia Pacific (Sydney) ap-southeast-2
|
|
Asia Pacific (Tokyo) ap-northeast-1
|
|
Canada (Central) ca-central-1
|
|
China (Beijing) cn-north-1 HTTPS
|
|
China (Ningxia) cn-northwest-1 HTTPS
|
|
Europe (Frankfurt) eu-central-1
|
|
Europe (Ireland) eu-west-1
|
|
Europe (London) eu-west-2
|
|
Europe (Milan) eu-south-1
|
|
Europe (Paris) eu-west-3
|
|
Europe (Stockholm) eu-north-1
|
|
Middle East (Bahrain) me-south-1
|
|
South America (São Paulo) sa-east-1
|
|
AWS GovCloud (US-East) us-gov-east-1
|
|
AWS GovCloud (US) us-gov-west-1
|
|
END
|
|
)
|
|
|
|
echo "$REGIONS" | fzf
|